24 lines
478 B
C#
24 lines
478 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace RobotApp.VDA5050.Factsheet;
|
|
|
|
public enum ValueDataType
|
|
{
|
|
BOOL,
|
|
NUMBER,
|
|
INTEGER,
|
|
FLOAT,
|
|
STRING,
|
|
OBJECT,
|
|
ARRAY,
|
|
}
|
|
public class ActionParameters
|
|
{
|
|
[Required]
|
|
public string Key { get; set; } = string.Empty;
|
|
[Required]
|
|
public string ValueDataType { get; set; } = string.Empty;
|
|
public string Description { get; set; } = string.Empty;
|
|
public bool IsOptional { get; set; }
|
|
}
|