Files
parr_api/PARR.API/Contracts/V1/Responses/JobBaseResponse.cs

68 lines
1.7 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using PARR.DAL.Models.Job;
namespace PARR.API.Contracts.V1.Responses
{
public class JobBaseResponse
{
public Guid Id { get; set; }
public required string Name { get; set; }
public required string TemplateNameMask { get; set; }
public TnkResponse? Tnk { get; set; }
public JobGroupBaseResponse? Group { get; set; }
}
public class JobResponse : JobBaseResponse
{
public int TemplatesCount { get; set; }
#region Статистика
public TemplateStats? TemplateStatistics { get; set; }
public ScheduleStats? ScheduleStatistics { get; set; }
#endregion
}
public class TemplateStats
{
/// <summary>
/// Активированных шаблонов
/// </summary>
public int Activated { get; set; }
/// <summary>
/// Синхронизировано шаблонов (TaskStatus = 30/Ok)
/// </summary>
public int Synchronized { get; set; }
/// <summary>
/// Ошибок синхронизации (RobotStatus = 33/Error)
/// </summary>
public int Errors { get; set; }
}
public class ScheduleStats
{
/// <summary>
/// Активированных шаблонов
/// </summary>
public int Activated { get; set; }
/// <summary>
/// Синхронизировано шаблонов (TaskStatus = 30/Ok)
/// </summary>
public int Synchronized { get; set; }
/// <summary>
/// Ошибок синхронизации (RobotStatus = 33/Error)
/// </summary>
public int Errors { get; set; }
}
}