2023-03-23 21:41:26 +07:00
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Recurit.Exam.Service.Response
|
|
|
|
|
|
{
|
|
|
|
|
|
public class CandidateEducationResponseItem
|
|
|
|
|
|
{
|
|
|
|
|
|
public string EducationLevelId { get; set; } = string.Empty;
|
|
|
|
|
|
public string Major { get; set; } = string.Empty;
|
2023-03-25 01:09:03 +07:00
|
|
|
|
public float Scores { get; set; }
|
2023-03-23 21:41:26 +07:00
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
|
public DateTime DurationStart { get; set; }
|
|
|
|
|
|
public DateTime DurationEnd { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|