2024-07-29 10:25:57 +10:00
|
|
|
|
namespace PARR.API.Contracts.V1.Responses.Statistics
|
|
|
|
|
|
{
|
|
|
|
|
|
public class StatTemplateDistributorResponse
|
|
|
|
|
|
{
|
|
|
|
|
|
public WorkGroupResponse? WorkGroup { get; set; }
|
|
|
|
|
|
|
2024-08-22 14:32:48 +10:00
|
|
|
|
public int AllCount { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public int IsActivatedAllCount { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public int IsDeactivatedAllCount { get; set; }
|
|
|
|
|
|
|
2024-07-29 10:25:57 +10:00
|
|
|
|
|
|
|
|
|
|
public List<StatTemplateDistributorDateStat>? Stat { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public class StatTemplateDistributorDateStat
|
|
|
|
|
|
{
|
|
|
|
|
|
public DateTimeOffset Date { get; set; }
|
2024-08-22 14:32:48 +10:00
|
|
|
|
public int AllCount { get; set; }
|
|
|
|
|
|
public int IsActivatedCount { get; set; }
|
|
|
|
|
|
public int IsDeactivatedCount { get;set; }
|
2024-07-29 10:25:57 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|