2023-03-23 21:41:26 +07:00
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Recurit.Exam.Service.Response
|
|
|
|
|
|
{
|
|
|
|
|
|
public class CandidateOccupationResponseItem
|
|
|
|
|
|
{
|
|
|
|
|
|
public string? OccupationType { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string? OccupationCompany { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string? OccupationDepartment { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string? OccupationEmail { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string? OccupationTelephone { get; set; }
|
2023-03-25 01:09:03 +07:00
|
|
|
|
|
|
|
|
|
|
public string? OccupationPosition { get; set; }
|
2023-03-23 21:41:26 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|