2023-04-06 22:50:53 +07:00
|
|
|
|
using System.Net;
|
|
|
|
|
|
using BMA.EHR.Recurit.Exam.Service.Models;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Recurit.Exam.Service.Request
|
|
|
|
|
|
{
|
|
|
|
|
|
public class RequestCardCandidate
|
|
|
|
|
|
{
|
2023-04-20 11:20:04 +07:00
|
|
|
|
public string? Avatar { get; set; }
|
2023-04-06 22:50:53 +07:00
|
|
|
|
public string? FirstName { get; set; }
|
|
|
|
|
|
public string? LastName { get; set; }
|
|
|
|
|
|
public string? Prefix { get; set; }
|
|
|
|
|
|
public string? CitizenId { get; set; }
|
|
|
|
|
|
public string? ExamIdenNumber { get; set; }
|
|
|
|
|
|
public string? SeatNumber { get; set; }
|
|
|
|
|
|
public string? Point { get; set; }
|
|
|
|
|
|
public Guid? Id { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|