2023-03-23 21:41:26 +07:00
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Recurit.Exam.Service.Response
|
|
|
|
|
|
{
|
|
|
|
|
|
public class CandidateOccupationResponseItem
|
|
|
|
|
|
{
|
2023-10-02 00:22:28 +07:00
|
|
|
|
public string? OccupationOrg { get; set; }
|
|
|
|
|
|
public string? OccupationPile { get; set; }
|
|
|
|
|
|
public string? OccupationGroup { get; set; }
|
2025-11-17 16:17:59 +07:00
|
|
|
|
public double? OccupationSalary { get; set; }
|
2023-03-25 01:09:03 +07:00
|
|
|
|
public string? OccupationPosition { get; set; }
|
2023-10-02 00:22:28 +07:00
|
|
|
|
public string? OccupationPositionType { get; set; }
|
|
|
|
|
|
public string? OccupationTelephone { get; set; }
|
2023-03-23 21:41:26 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|