RobotApp/RobotApp.VDA5050/Factsheet/ActionParameters.cs
Đăng Nguyễn cf309cccba Init project
2025-09-10 10:48:39 +07:00

26 lines
449 B
C#

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; }
}