16 lines
323 B
C#
16 lines
323 B
C#
using System.Net;
|
|
|
|
namespace BMA.EHR.Recurit.Exam.Service.Response
|
|
{
|
|
public class CandidateStatusResponse
|
|
{
|
|
public string? Status { get; set; }
|
|
|
|
public string? RejectDetail { get; set; }
|
|
|
|
public bool? IsShowExamInfo { get; set; }
|
|
|
|
public bool? IsShowResult { get; set; }
|
|
|
|
}
|
|
}
|