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