2023-04-09 04:22:04 +07:00
|
|
|
|
|
|
|
|
|
|
using BMA.EHR.Recurit.Exam.Service.Responses.Document;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Recurit.Exam.Service.Response
|
|
|
|
|
|
{
|
|
|
|
|
|
public class CMSExamResponseItem
|
|
|
|
|
|
{
|
|
|
|
|
|
public string? Id { get; set; }
|
|
|
|
|
|
public string? Category { get; set; }
|
2023-04-12 14:09:50 +07:00
|
|
|
|
public string? CategoryId { get; set; }
|
2023-04-09 23:15:08 +07:00
|
|
|
|
public string? Start { get; set; }
|
|
|
|
|
|
public string? End { get; set; }
|
2023-04-12 14:09:50 +07:00
|
|
|
|
public string? ExamDate { get; set; }
|
|
|
|
|
|
public string? Announcement_startDate { get; set; }
|
2023-04-09 23:15:08 +07:00
|
|
|
|
public string? Announcement_endDate { get; set; }
|
2023-04-11 23:24:18 +07:00
|
|
|
|
public bool? AnnouncementExam { get; set; }
|
|
|
|
|
|
public string? Register_startDate { get; set; }
|
|
|
|
|
|
public string? Register_endDate { get; set; }
|
|
|
|
|
|
public string? Payment_startDate { get; set; }
|
|
|
|
|
|
public string? Payment_endDate { get; set; }
|
2023-04-09 04:22:04 +07:00
|
|
|
|
public string? Title { get; set; }
|
|
|
|
|
|
public string? Detail { get; set; }
|
|
|
|
|
|
public string? Image { get; set; }
|
|
|
|
|
|
public List<HomePageLinkResponseItem>? Images { get; set; }
|
|
|
|
|
|
public List<HomePageLinkResponseItem>? Files { get; set; }
|
|
|
|
|
|
public List<HomePageLinkResponseItem>? Positions { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|