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 : UnitResponse { public DateTimeOffset? LastLogon { get; set; } public List? Attributes { get; set; } //public List? Parents { get; set; } //public List? Childrens { get; set; } } public class UnitRelationshipsAndAttributesResponse : UnitWithAttributesResponse { public List? Parents { get; set; } public List? Childrens { get; set; } } }