2023-04-07 16:26:11 +07:00
|
|
|
|
using System.Net;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Recurit.Exam.Service.Request
|
|
|
|
|
|
{
|
|
|
|
|
|
public class RequestCMSAbout
|
|
|
|
|
|
{
|
|
|
|
|
|
public string? BannerImg { get; set; }
|
|
|
|
|
|
// public Models.Document? BannerImgId { get; set; }
|
|
|
|
|
|
public string? ProfileImg { get; set; }
|
|
|
|
|
|
// public Models.Document? ProfileImgId { get; set; }
|
|
|
|
|
|
public string? NameTh { get; set; }
|
2023-04-09 04:22:04 +07:00
|
|
|
|
public string? ShortName { get; set; }
|
2023-04-07 16:26:11 +07:00
|
|
|
|
public string? NameEn { get; set; }
|
|
|
|
|
|
public string? Description { get; set; }
|
|
|
|
|
|
public string? About { get; set; }
|
|
|
|
|
|
public string? Address { get; set; }
|
|
|
|
|
|
// public Models.Province? Province { get; set; }
|
|
|
|
|
|
public string? ProvinceId { get; set; }
|
|
|
|
|
|
// public Models.District? District { get; set; }
|
|
|
|
|
|
public string? DistrictId { get; set; }
|
|
|
|
|
|
// public Models.SubDistrict? SubDistrict { get; set; }
|
|
|
|
|
|
public string? SubDistrictId { get; set; }
|
|
|
|
|
|
public string? ZipCode { get; set; }
|
|
|
|
|
|
public string? Telephone { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|