9 lines
243 B
C#
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;
|
|
}
|