13 lines
432 B
C#
13 lines
432 B
C#
|
|
namespace BMA.EHR.Recurit.Exam.Service.Response
|
|
{
|
|
public class CandidateCareerResponseItem
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Position { get; set; } = string.Empty;
|
|
public int Salary { get; set; }
|
|
public DateTime DurationStart { get; set; }
|
|
public DateTime DurationEnd { get; set; }
|
|
public string Reason { get; set; } = string.Empty;
|
|
}
|
|
}
|