hrms-api-exam/Response/HomePageResponseItem.cs

26 lines
891 B
C#

using BMA.EHR.Recurit.Exam.Service.Responses.Document;
namespace BMA.EHR.Recurit.Exam.Service.Response
{
public class HomePageResponseItem
{
public string? Logo_url { get; set; }
public string? Title { get; set; }
public string? Subtitle { get; set; }
public string? Supervised { get; set; }
public string? Telephone { get; set; }
public string? Address { get; set; }
public List<HomePageLinkResponseItem>? Divisions { get; set; }
public List<HomePageLinkResponseItem>? Institutes { get; set; }
}
public class HomePageLinkResponseItem
{
public string? Title { get; set; }
public string? Level { get; set; }
public string? Url { get; set; }
public string? Id { get; set; }
public string? Path { get; set; }
public string? HighDegree { get; set; }
}
}