hrms-api-exam/Response/CandidateOccupationResponseItem.cs
2023-03-25 01:09:03 +07:00

18 lines
453 B
C#

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; }
public string? OccupationPosition { get; set; }
}
}