hrms-api-exam/Request/RequestStatusRegistry.cs

20 lines
695 B
C#

using System.Net;
using BMA.EHR.Recurit.Exam.Service.Models;
namespace BMA.EHR.Recurit.Exam.Service.Request
{
public class RequestStatusRegistry
{
public bool Consend { get; set; }
public bool Position { get; set; }
public bool Bank { get; set; }
public bool Payment { get; set; }
public bool CanRegister { get; set; }
public string? Status { get; set; }
public string? EditorCondition { get; set; }
public string? EditorConfirm { get; set; }
public PositionExam? PositionExam { get; set; }
public DateTime? RegisterEndDate { get; set; }
public DateTime? RegisterStartDate { get; set; }
}
}