RobotApp/RobotApp.VDA5050/Factsheet/AgvActions.cs
Đăng Nguyễn 0d97684f70 update
2025-09-15 17:39:02 +07:00

23 lines
574 B
C#

using System.ComponentModel.DataAnnotations;
namespace RobotApp.VDA5050.Factsheet;
public enum ActionScopes
{
INSTANT,
NODE,
EDGE,
}
public class AgvActions
{
[Required]
public string ActionType { get; set; } = string.Empty;
public string ActionDescription { get; set; } = string.Empty;
[Required]
public string[] ActionScopes { get; set; } = [];
public ActionParameters[] ActionParameters { get; set; } = [];
public string ResultDescription { get; set; } = string.Empty;
public string[] BlockingTypes { get; set; } = [];
}