Files
S8n.MySolutionTemplate/MyCompany.MyProject.BackendApi/Models/ComponentInput.cs
2026-02-11 16:12:04 +03:00

11 lines
333 B
C#

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<string>? Enum { get; set; }
public bool Required { get; set; } = true;
}