2023-04-06 03:06:17 +07:00
|
|
|
|
using System.Net;
|
|
|
|
|
|
using BMA.EHR.Recurit.Exam.Service.Models;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Recurit.Exam.Service.Request
|
|
|
|
|
|
{
|
|
|
|
|
|
public class RequestPositionName
|
|
|
|
|
|
{
|
|
|
|
|
|
public string? Name { get; set; }
|
2023-04-28 11:44:59 +07:00
|
|
|
|
public int? Round { get; set; }
|
|
|
|
|
|
public int? Year { get; set; }
|
2023-10-02 00:22:28 +07:00
|
|
|
|
public string? Position { get; set; }
|
|
|
|
|
|
public string? PositionLevel { get; set; }
|
2025-11-18 13:21:57 +07:00
|
|
|
|
public string? EducationLevel { get; set; }
|
2023-04-06 03:06:17 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|