15 lines
611 B
C#
15 lines
611 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 string Type { 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;
|
|
}
|
|
}
|