update
This commit is contained in:
22
RobotApp.VDA5050/InstantAction/Action.cs
Normal file
22
RobotApp.VDA5050/InstantAction/Action.cs
Normal 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; } = [];
|
||||
}
|
||||
Reference in New Issue
Block a user