RobotApp/RobotApp.VDA5050/Factsheet/ActionParameters.cs
Đăng Nguyễn 0d97684f70 update
2025-09-15 17:39:02 +07:00

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