hrms-api-exam/Response/CandidateOccupationResponseItem.cs

19 lines
453 B
C#
Raw Normal View History


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; }
}
}