This commit is contained in:
Đăng Nguyễn
2025-09-15 17:39:02 +07:00
parent cf309cccba
commit 0d97684f70
69 changed files with 1363 additions and 412 deletions

View File

@@ -2,8 +2,6 @@
namespace RobotApp.VDA5050.Factsheet;
#nullable disable
public enum ValueDataType
{
BOOL,
@@ -17,9 +15,9 @@ public enum ValueDataType
public class ActionParameters
{
[Required]
public string Key { get; set; }
public string Key { get; set; } = string.Empty;
[Required]
public string ValueDataType { get; set; }
public string Description { get; set; }
public string ValueDataType { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
public bool IsOptional { get; set; }
}