19 lines
437 B
C#
19 lines
437 B
C#
namespace PARR.API.Contracts.V1.Responses
|
||
{
|
||
public class UnitResponse
|
||
{
|
||
public Guid Id { get; set; }
|
||
|
||
public required string Name { get; set; }
|
||
}
|
||
|
||
|
||
/// <summary>
|
||
/// Response с всеми аттребутами и их значениями
|
||
/// </summary>
|
||
public class UnitWithAttributesResponse : UnitResponse
|
||
{
|
||
public List<AttributeResponse>? Attributes { get; set; }
|
||
}
|
||
}
|