Init project
This commit is contained in:
25
RobotApp.VDA5050/Factsheet/ActionParameters.cs
Normal file
25
RobotApp.VDA5050/Factsheet/ActionParameters.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace RobotApp.VDA5050.Factsheet;
|
||||
|
||||
#nullable disable
|
||||
|
||||
public enum ValueDataType
|
||||
{
|
||||
BOOL,
|
||||
NUMBER,
|
||||
INTEGER,
|
||||
FLOAT,
|
||||
STRING,
|
||||
OBJECT,
|
||||
ARRAY,
|
||||
}
|
||||
public class ActionParameters
|
||||
{
|
||||
[Required]
|
||||
public string Key { get; set; }
|
||||
[Required]
|
||||
public string ValueDataType { get; set; }
|
||||
public string Description { get; set; }
|
||||
public bool IsOptional { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user