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