feat(api): в UnitWithAttributesResponse добавлены родительские и дочерние ЭК

This commit is contained in:
Mikhail Trubnikov
2025-08-27 10:43:33 +10:00
parent b288888d7a
commit c9159f6546
3 changed files with 12 additions and 2 deletions

View File

@@ -23,6 +23,10 @@
public DateTimeOffset? LastLogon { get; set; }
public List<AttributeResponse>? Attributes { get; set; }
public List<UnitBaseResponse>? Parents { get; set; }
public List<UnitBaseResponse>? Childrens { get; set; }
}
}