ต่อ api บุคคลที่สามารถติดต่อได้

This commit is contained in:
Kittapath 2023-10-06 01:28:37 +07:00
parent 20b031c29f
commit b8f12139e1
11 changed files with 3384 additions and 64 deletions

View file

@ -0,0 +1,12 @@

namespace BMA.EHR.Recurit.Exam.Service.Response
{
public class CandidateContactResponseItem
{
public Guid? ContactPrefixId { get; set; }
public string? ContactFirstname { get; set; }
public string? ContactLastname { get; set; }
public string? ContactRelations { get; set; }
public string? ContactTel { get; set; }
}
}