RobotApp/RobotApp.VDA5050/Factsheet/AgvActions.cs
Đăng Nguyễn ab5d3e1a1a update
2025-10-22 11:16:19 +07:00

24 lines
574 B
C#

using System.ComponentModel.DataAnnotations;
namespace RobotApp.VDA5050.Factsheet;
public enum ActionScopes
{
INSTANT,
NODE,
EDGE,
}
public class AgvAction
{
[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; } = [];
}