namespace PARR.API.Contracts.V1.Responses
{
public class UnitResponse
{
public Guid Id { get; set; }
public required string Name { get; set; }
}
///
/// Response с всеми аттребутами и их значениями
///
public class UnitWithAttributesResponse : UnitResponse
{
public List? Attributes { get; set; }
}
}