18 lines
591 B
C#
18 lines
591 B
C#
using System.Net;
|
|
|
|
namespace BMA.EHR.Recurit.Exam.Service.Request
|
|
{
|
|
public class RequestPositionExam
|
|
{
|
|
public Guid? Id { get; set; }
|
|
public Guid? PositionId { get; set; }
|
|
public string? PositionName { get; set; }
|
|
public Guid? PositionLevelId { get; set; }
|
|
public string? PositionLevelName { get; set; }
|
|
public bool HighDegree { get; set; }
|
|
public string? Code { get; set; }
|
|
public string? TypeId { get; set; }
|
|
public string? TypeName { get; set; }
|
|
public string? EducationLevel { get; set; }
|
|
}
|
|
}
|