13 lines
444 B
C#
13 lines
444 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 float Scores { get; set; }
|
|
public string Name { get; set; } = string.Empty;
|
|
public DateTime DurationStart { get; set; }
|
|
public DateTime DurationEnd { get; set; }
|
|
}
|
|
}
|