hrms-api-exam/Response/CandidateStatusResponse.cs

14 lines
273 B
C#
Raw Normal View History

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; }
}
}