18 lines
452 B
C#
18 lines
452 B
C#
namespace PARR.API.Contracts.V1.Responses.Statistics
|
|
{
|
|
public class StatTemplateDistributorResponse
|
|
{
|
|
public WorkGroupResponse? WorkGroup { get; set; }
|
|
|
|
public int CountTemplates { get; set; }
|
|
|
|
public List<StatTemplateDistributorDateStat>? Stat { get; set; }
|
|
}
|
|
|
|
public class StatTemplateDistributorDateStat
|
|
{
|
|
public DateTimeOffset Date { get; set; }
|
|
public int Count { get; set; }
|
|
}
|
|
}
|