18 lines
453 B
C#
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; }
|
|
}
|
|
}
|