13 lines
425 B
C#
13 lines
425 B
C#
|
|
namespace BMA.EHR.Recurit.Exam.Service.Response
|
|
{
|
|
public class CandidateContactResponseItem
|
|
{
|
|
public Guid? ContactPrefixId { get; set; }
|
|
public string? ContactPrefix { get; set; }
|
|
public string? ContactFirstname { get; set; }
|
|
public string? ContactLastname { get; set; }
|
|
public string? ContactRelations { get; set; }
|
|
public string? ContactTel { get; set; }
|
|
}
|
|
}
|