RobotNet/RobotNet.RobotShares/VDA5050/Factsheet/OptionalParameters.cs
2025-10-15 15:15:53 +07:00

20 lines
365 B
C#

using System.ComponentModel.DataAnnotations;
namespace RobotNet.RobotShares.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; }
}