This commit is contained in:
Đăng Nguyễn
2025-09-15 17:39:02 +07:00
parent cf309cccba
commit 0d97684f70
69 changed files with 1363 additions and 412 deletions

View File

@@ -0,0 +1,22 @@
using System.ComponentModel.DataAnnotations;
namespace RobotApp.VDA5050.InstantAction;
public enum BlockingType
{
NONE,
SOFT,
HARD
}
public class Action
{
[Required]
public string ActionType { get; set; } = "";
[Required]
public string ActionId { get; set; } = "";
public string ActionDescription { get; set; } = "";
[Required]
public string BlockingType { get; set; } = "";
public ActionParameter[] ActionParameters { get; set; } = [];
}