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