14 lines
378 B
C#
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; } = [];
|
|
}
|