14 lines
353 B
C#
14 lines
353 B
C#
|
|
using System.Net;
|
|||
|
|
using BMA.EHR.Recurit.Exam.Service.Models;
|
|||
|
|
|
|||
|
|
namespace BMA.EHR.Recurit.Exam.Service.Request
|
|||
|
|
{
|
|||
|
|
public class RequestImportSeat
|
|||
|
|
{
|
|||
|
|
public string? CitizenId { get; set; }
|
|||
|
|
public string? ExamIdenNumber { get; set; }
|
|||
|
|
public string? SeatNumber { get; set; }
|
|||
|
|
public string? Point { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|