15 lines
626 B
C#
15 lines
626 B
C#
|
|
namespace BMA.EHR.Recurit.Exam.Service.Response
|
|
{
|
|
public class CandidateEducationResponseItem
|
|
{
|
|
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; }
|
|
}
|
|
}
|