26 lines
461 B
C#
26 lines
461 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace RobotNet.RobotShares.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; }
|
|
}
|