2023-03-23 21:41:26 +07:00
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Recurit.Exam.Service.Response
|
|
|
|
|
|
{
|
|
|
|
|
|
public class CandidateCareerResponseItem
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Position { get; set; } = string.Empty;
|
2023-10-04 09:46:08 +07:00
|
|
|
|
public string? Group { get; set; } = string.Empty;
|
|
|
|
|
|
public string? Pile { get; set; } = string.Empty;
|
|
|
|
|
|
public string? Org { get; set; } = string.Empty;
|
|
|
|
|
|
public string Type { get; set; } = string.Empty;
|
2023-10-02 00:22:28 +07:00
|
|
|
|
public DateTime DurationStart { get; set; } = DateTime.Now.Date;
|
|
|
|
|
|
public DateTime DurationEnd { get; set; } = DateTime.Now.Date;
|
|
|
|
|
|
public string RangeDate { get; set; } = string.Empty;
|
2023-03-23 21:41:26 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|