feat(api): Статистика: Получить кол-во шаблонов у которых ИД расписания null и нет задания на создание расписания

This commit is contained in:
Mikhail Trubnikov
2026-07-17 15:35:46 +10:00
parent 5edbcff35b
commit bbb14ee4ea
3 changed files with 42 additions and 13 deletions

View File

@@ -226,6 +226,7 @@ namespace PARR.API.Contracts.V1
{
public const string Get = BaseStat + "/templates/";
public const string GetForPeriod = BaseStat + "/templates/period";
public const string GetTemplatesWithoutScheduleAndTaskCount = BaseStat + "/templates/without-schedule";
}
public static class StatStatusTypeTemplates

View File

@@ -0,0 +1,5 @@
namespace PARR.API.Contracts.V1.Responses.Statistics
{
public record StatTemplatesWithoutScheduleResponse(int Count);
}