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