17 lines
537 B
C#
17 lines
537 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 string? Status { get; set; }
|
|
public string? EditorCondition { get; set; }
|
|
public string? EditorConfirm { get; set; }
|
|
public PositionExam? PositionExam { get; set; }
|
|
}
|
|
}
|