using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Entity.ShowEasyDtos { public class ONSiteBaseInfoDTO { public string ServiceID { get; set; } //服務編號 public string ServiceNo { get; set; } //服務名稱 public string ServiceName { get; set; } //費用説明 public string ExpenseDescription { get; set; } //常見問題 public List FQAs { get; set; } //適用展會 public string ExhibitionNames { get; set; } //訂單確認工作天 public string ConfirmDays { get; set; } //服務適用地 public string SuitPlaces { get; set; } //服務領取地 public string ReceivinPlaces { get; set; } //適用展會ID public string ExhibitionID { get; set; } //服務特色 (服務名稱下方的) public string Features { get; set; } //服務説明 public string Details { get; set; } //取消政策 public string CancelPolicy { get; set; } //public string SupplierID { get; set; } //public string CurrencyID { get; set; } //public DateTime? LaunchDateS { get; set; } //public DateTime? LaunchDateE { get; set; } //public string PayType { get; set; } //public string CMode { get; set; } //public string SuitPlace { get; set; } //public string CancelPolicy { get; set; } //public string OrderMemo { get; set; } //public string SubCategoryID { get; set; } //public string ExhibitionID { get; set; } //public string OrderQuestions { get; set; } } public class FQADTO { public string Question { get; set; } public string Answer { get; set; } } public class ServiceCategoryDTO { /// /// /// public string CategoryID { get; set; } /// /// /// public string CategoryName { get; set; } /// /// /// [JsonProperty(NullValueHandling = NullValueHandling.Ignore)] public List SubCategoryList = new List(); [JsonProperty(NullValueHandling = NullValueHandling.Ignore)] public Dictionary SubCategoryDic = new Dictionary(); } public class ServiceRegionDTO { /// /// /// public string RegionID { get; set; } /// /// /// public string RegionName { get; set; } [JsonProperty(NullValueHandling = NullValueHandling.Ignore)] public List CountryList = new List(); [JsonProperty(NullValueHandling = NullValueHandling.Ignore)] public Dictionary CountryDic = new Dictionary(); } public class ServiceCountryDTO { /// /// /// public string CountryID { get; set; } /// /// /// public string CountryName { get; set; } [JsonProperty(NullValueHandling = NullValueHandling.Ignore)] public List CityList = new List(); [JsonProperty(NullValueHandling = NullValueHandling.Ignore)] public Dictionary CityDic = new Dictionary(); } }