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

20 lines
353 B
C#

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