namespace MyCompany.MyProject.BackendApi.Models; record ComponentInput { public string Name { get; set; } = string.Empty; public string Type { get; set; } = string.Empty; public string Description { get; set; } = string.Empty; public List? Enum { get; set; } public bool Required { get; set; } = true; }