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; } }