hrms-api-exam/Response/CandidateCareerResponseItem.cs

14 lines
551 B
C#

namespace BMA.EHR.Recurit.Exam.Service.Response
{
public class CandidateCareerResponseItem
{
public string Position { get; set; } = string.Empty;
public string Group { get; set; } = string.Empty;
public string Pile { get; set; } = string.Empty;
public string Org { get; set; } = string.Empty;
public DateTime DurationStart { get; set; } = DateTime.Now.Date;
public DateTime DurationEnd { get; set; } = DateTime.Now.Date;
public string RangeDate { get; set; } = string.Empty;
}
}