2023-04-09 04:22:04 +07:00
|
|
|
|
using System.Net;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Recurit.Exam.Service.Response
|
|
|
|
|
|
{
|
|
|
|
|
|
public class CandidateStatusResponse
|
|
|
|
|
|
{
|
|
|
|
|
|
public string? Status { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string? RejectDetail { get; set; }
|
2025-11-18 13:21:57 +07:00
|
|
|
|
|
|
|
|
|
|
public bool? IsShowExamInfo { get; set; }
|
2023-04-09 04:22:04 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|