feat(api): StatTemplateDistributor дополнена статистика активированными, деактивированными шаблонами

This commit is contained in:
Mikhail Trubnikov
2024-08-22 14:32:48 +10:00
parent af28c8477e
commit 7ffc5f10e1
2 changed files with 27 additions and 5 deletions

View File

@@ -4,7 +4,12 @@
{
public WorkGroupResponse? WorkGroup { get; set; }
public int CountTemplates { get; set; }
public int AllCount { get; set; }
public int IsActivatedAllCount { get; set; }
public int IsDeactivatedAllCount { get; set; }
public List<StatTemplateDistributorDateStat>? Stat { get; set; }
}
@@ -12,6 +17,8 @@
public class StatTemplateDistributorDateStat
{
public DateTimeOffset Date { get; set; }
public int Count { get; set; }
public int AllCount { get; set; }
public int IsActivatedCount { get; set; }
public int IsDeactivatedCount { get;set; }
}
}