14 lines
442 B
C#
14 lines
442 B
C#
|
|
|
|||
|
|
namespace BMA.EHR.Recurit.Exam.Service.Response
|
|||
|
|
{
|
|||
|
|
public class CandidateEducationResponseItem
|
|||
|
|
{
|
|||
|
|
public string EducationLevelId { get; set; } = string.Empty;
|
|||
|
|
public string Major { get; set; } = string.Empty;
|
|||
|
|
public int Scores { get; set; }
|
|||
|
|
public string Name { get; set; } = string.Empty;
|
|||
|
|
public DateTime DurationStart { get; set; }
|
|||
|
|
public DateTime DurationEnd { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|