2023-03-23 21:41:26 +07:00
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Recurit.Exam.Service.Response
|
|
|
|
|
|
{
|
|
|
|
|
|
public class CandidateEducationResponseItem
|
|
|
|
|
|
{
|
2023-10-02 00:22:28 +07:00
|
|
|
|
public Guid EducationLevelExamId { get; set; }
|
|
|
|
|
|
public string EducationName { get; set; } = string.Empty;
|
|
|
|
|
|
public string EducationMajor { get; set; } = string.Empty;
|
|
|
|
|
|
public string EducationLocation { get; set; } = string.Empty;
|
|
|
|
|
|
public string EducationType { get; set; } = string.Empty;
|
|
|
|
|
|
public DateTime EducationEndDate { get; set; }
|
|
|
|
|
|
public string EducationScores { get; set; } = string.Empty;
|
|
|
|
|
|
public Guid EducationLevelHighId { get; set; }
|
2023-03-23 21:41:26 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|