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; } public string? CategoryId { get; set; } public string? Start { get; set; } public string? End { get; set; } public string? ExamDate { get; set; } public string? Announcement_date { get; set; } public string? Announcement_startDate { get; set; } public string? Announcement_endDate { get; set; } 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; } public string? Title { get; set; } public string? Detail { get; set; } public string? EditorCondition { get; set; } public string? EditorConfirm { get; set; } public string? Image { get; set; } public int? Year { get; set; } public int? Round { get; set; } public bool? CanRegister { get; set; } public List? Images { get; set; } public List? Files { get; set; } public List? Positions { get; set; } public List? PositionsTrue { get; set; } public List? PositionsFalse { get; set; } } }