This commit is contained in:
Đăng Nguyễn
2025-09-26 08:48:50 +07:00
parent 0d97684f70
commit d6fe1d9d52
53 changed files with 1232 additions and 111 deletions

View File

@@ -2,8 +2,6 @@
namespace RobotApp.VDA5050.State;
#nullable disable
public enum ActionStatus
{
WAITING,
@@ -15,11 +13,11 @@ public enum ActionStatus
}
public class ActionState
{
public string ActionType { get; set; }
public string ActionType { get; set; } = string.Empty;
[Required]
public string ActionId { get; set; }
public string ActionDescription { get; set; }
public string ActionId { get; set; } = string.Empty;
public string ActionDescription { get; set; } = string.Empty;
[Required]
public string ActionStatus { get; set; }
public string ResultDescription { get; set; }
public string ActionStatus { get; set; } = string.Empty;
public string ResultDescription { get; set; } = string.Empty;
}