update
This commit is contained in:
@@ -2,7 +2,6 @@
|
||||
|
||||
namespace RobotApp.VDA5050.Factsheet;
|
||||
|
||||
#nullable disable
|
||||
|
||||
public enum ActionScopes
|
||||
{
|
||||
@@ -13,11 +12,11 @@ public enum ActionScopes
|
||||
public class AgvActions
|
||||
{
|
||||
[Required]
|
||||
public string ActionType { get; set; }
|
||||
public string ActionDescription { get; set; }
|
||||
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; }
|
||||
public string[] BlockingTypes { get; set; }
|
||||
public string[] ActionScopes { get; set; } = [];
|
||||
public ActionParameters[] ActionParameters { get; set; } = [];
|
||||
public string ResultDescription { get; set; } = string.Empty;
|
||||
public string[] BlockingTypes { get; set; } = [];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user