namespace PARR.API.Contracts.V1.Responses.Statistics { public class StatTemplateDistributorResponse { public WorkGroupResponse? WorkGroup { get; set; } public int AllCount { get; set; } public int IsActivatedAllCount { get; set; } public int IsDeactivatedAllCount { get; set; } public List? Stat { get; set; } } public class StatTemplateDistributorDateStat { public DateTimeOffset Date { get; set; } public int AllCount { get; set; } public int IsActivatedCount { get; set; } public int IsDeactivatedCount { get;set; } } }