feat(api): расширен респонс WorkResponse до WorkWithTnkResponse, добавлена полная иерархия тнк. В Work.GetAll добавлен параметр для загрузки с иерархией.

This commit is contained in:
Mikhail Trubnikov
2024-04-03 14:12:59 +10:00
parent 76bfc5aa16
commit a92bbf1899
6 changed files with 67 additions and 7 deletions

View File

@@ -10,4 +10,9 @@
public Guid ProcessId { get; set; }
}
public class SubprocessWithProcessResponse : SubprocessResponse
{
public ProcessResponse? Process { get; set; }
}
}