12 lines
222 B
C#
12 lines
222 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; }
|
|||
|
|
}
|
|||
|
|
}
|