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

19 lines
383 B
C#

using System.ComponentModel.DataAnnotations;
namespace RobotApp.VDA5050.Factsheet;
public enum Support
{
SUPPORTED,
REQUIRED,
}
public class OptionalParameters
{
[Required]
public string Parameter { get; set; } = string.Empty;
[Required]
public string Support { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
}