2023-10-06 01:28:37 +07:00
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Recurit.Exam.Service.Response
|
|
|
|
|
|
{
|
|
|
|
|
|
public class CandidateContactResponseItem
|
|
|
|
|
|
{
|
|
|
|
|
|
public Guid? ContactPrefixId { get; set; }
|
2025-11-17 16:17:59 +07:00
|
|
|
|
public string? ContactPrefix { get; set; }
|
2023-10-06 01:28:37 +07:00
|
|
|
|
public string? ContactFirstname { get; set; }
|
|
|
|
|
|
public string? ContactLastname { get; set; }
|
|
|
|
|
|
public string? ContactRelations { get; set; }
|
|
|
|
|
|
public string? ContactTel { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|