2023-04-05 00:58:22 +07:00
|
|
|
|
using System.Net;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Recurit.Exam.Service.Request
|
|
|
|
|
|
{
|
|
|
|
|
|
public class RequestPositionExam
|
|
|
|
|
|
{
|
2023-04-06 03:06:17 +07:00
|
|
|
|
public Guid? Id { get; set; }
|
2023-04-05 00:58:22 +07:00
|
|
|
|
public Guid? PositionId { get; set; }
|
|
|
|
|
|
public string? PositionName { get; set; }
|
2023-10-02 00:22:28 +07:00
|
|
|
|
public Guid? PositionLevelId { get; set; }
|
|
|
|
|
|
public string? PositionLevelName { get; set; }
|
2023-06-01 15:49:25 +07:00
|
|
|
|
public bool HighDegree { get; set; }
|
2023-10-04 18:04:56 +07:00
|
|
|
|
public string? Code { get; set; }
|
2023-04-06 03:06:17 +07:00
|
|
|
|
public string? TypeId { get; set; }
|
2023-04-05 00:58:22 +07:00
|
|
|
|
public string? TypeName { get; set; }
|
2025-11-17 16:17:59 +07:00
|
|
|
|
public string? EducationLevel { get; set; }
|
2023-04-05 00:58:22 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|