Files
2026-02-11 16:12:04 +03:00

9 lines
243 B
C#

namespace MyCompany.MyProject.BackendApi.Models;
record ComponentOutput
{
public string Name { get; set; } = string.Empty;
public string Type { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
}