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