feat(api): StatTemplateDistributor дополнена статистика активированными, деактивированными шаблонами
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user