15 lines
433 B
C#
15 lines
433 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 PositionExam? PositionExam { get; set; }
|
|
}
|
|
}
|