namespace PARR.API.Contracts.V1.Responses { public class TemplateResponse { public Guid Id { get; set; } public required string Name { get; set; } public bool IsActiveTemplate { get; set; } public bool IsActiveSchedule { get; set; } public required string Category { get; set; } public required string Initiator { get; set; } public required string ClosingCode { get; set; } public required string ShortDescription { get; set; } public required string FullDescription { get; set; } public required string Solution { get; set; } public required string TemplateDuration { get; set; } public TemplateAgentResponse? Agent { get; set; } public DateTimeOffset? LastRun { get; set; } public DateTimeOffset NextRun { get; set; } public bool IsAutoDistributionEnabled { get; set; } //public UnitResponse? Unit { get; set; } public UnitWithAttributesResponse? Unit { get; set; } public JobResponse? Job { get; set; } public ProcessResponse? Process { get; set; } public SubprocessResponse? Subprocess { get; set; } public TnkResponse? Tnk { get; set; } public List? SyncStatus { get; set; } /// /// Расписание /// public EsppScheduleResponse? Schedule { get; set; } public int OrderCount { get; set; } public TemplateStatusTypeResponse? StatusType { get; set; } } }