Files
parr_api/PARR.API/Contracts/V1/Responses/Statistics/StatTemplateResponse.cs

18 lines
434 B
C#
Raw Normal View History

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; }
}
}