18 lines
434 B
C#
18 lines
434 B
C#
namespace PARR.API.Contracts.V1.Responses.Statistics
|
|
{
|
|
public class StatTemplateResponse
|
|
{
|
|
public int TemplateCount { get; set; }
|
|
|
|
public int ActivateTemplateCount { get; set; }
|
|
|
|
public int ActivateScheduleCount { get; set; }
|
|
|
|
public int TemplateAgentCount { get; set; }
|
|
|
|
public int SyncEsppTemplatesCount { get;set; }
|
|
|
|
public int SyncEsppScheduleCount { get; set; }
|
|
}
|
|
}
|