hrms-api-exam/Response/CandidateOccupationResponseItem.cs

14 lines
500 B
C#

namespace BMA.EHR.Recurit.Exam.Service.Response
{
public class CandidateOccupationResponseItem
{
public string? OccupationOrg { get; set; }
public string? OccupationPile { get; set; }
public string? OccupationGroup { get; set; }
public double? OccupationSalary { get; set; }
public string? OccupationPosition { get; set; }
public string? OccupationPositionType { get; set; }
public string? OccupationTelephone { get; set; }
}
}