feat(api): статистика по нагрузке РР. Добавлены запросы для получения статистики по списку ИД объектов

This commit is contained in:
Mikhail Trubnikov
2024-08-26 16:08:09 +10:00
parent 082d0819f3
commit 80325acfad
7 changed files with 196 additions and 38 deletions

View File

@@ -0,0 +1,11 @@
using PARR.API.Contracts.V1.Requests.Queries;
namespace PARR.API.Contracts.V1.Requests
{
public class StatWorkGroupsWorkLoadRequest
{
public List<Guid> WorkGroups { get; set; } = new List<Guid>();
public required WorkloadBaseQuery Filter { get; set; }
}
}