19 lines
383 B
C#
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;
|
|
}
|