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; }
|
2023-04-25 03:46:57 +07:00
|
|
|
|
public string? PointTotalB { get; set; }
|
|
|
|
|
|
public string? PointB { get; set; }
|
|
|
|
|
|
public string? ResultB { get; set; }
|
|
|
|
|
|
public string? PointTotalC { get; set; }
|
|
|
|
|
|
public string? PointC { get; set; }
|
|
|
|
|
|
public string? ResultC { get; set; }
|
|
|
|
|
|
public string? Pass { get; set; }
|
2023-04-29 10:26:03 +07:00
|
|
|
|
public string? Number { get; set; }
|
2023-04-28 11:44:59 +07:00
|
|
|
|
public DateTime? AnnouncementDate { get; set; }
|
2023-04-06 22:50:53 +07:00
|
|
|
|
public Guid? Id { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|