Files
parr_api/PARR.API/Contracts/V1/Responses/RobotTaskScheduleResponse.cs
2023-10-10 16:58:05 +10:00

27 lines
709 B
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.

namespace PARR.API.Contracts.V1.Responses
{
public class RobotTaskScheduleResponse : RobotTaskBaseResponse
{
/// <summary>
/// ИД расписания из ЕСПП. При создании, его не будет
/// </summary>
public string? EsppId { get; set; }
public required string ScheduleName { get; set; }
public bool IsActive { get; set; }
public required string ResponseArea { get; set; }
public required string TemplateName { get; set; }
public Guid TemplateId { get; set; }
public required string WorkGroup { get; set; }
public string? Description { get; set; }
// TODO:
}
}