RobotNet/RobotNet.RobotShares/Dtos/RobotActionDto.cs
2025-10-15 15:15:53 +07:00

14 lines
378 B
C#

using RobotNet.RobotShares.VDA5050.State;
namespace RobotNet.RobotShares.Dtos;
public class RobotActionDto
{
public string ActionId { get; set; } = "";
public ActionState? Action { get; set; }
public bool IsError { get; set; }
public bool IsCompleted { get; set; }
public bool IsProcessing { get; set; }
public string[] Errors { get; set; } = [];
}