using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Entity.ShowEasyDtos { public class ExhibitionCardDTO { /// /// /// public string ExhibitionID { get; set; } /// /// /// public string ExhibStatus { get; set; } /// /// /// public string IsRecommend { get; set; } /// /// /// public string IsFavorite { get; set; } /// /// /// public string Logo { get; set; } /// /// /// public string AbbreviatedName { get; set; } /// /// /// public string ExhibitionName { get; set; } /// /// /// public string RegionID { get; set; } /// /// /// public string RegionName { get; set; } /// /// /// public string CountryID { get; set; } /// /// /// public string CountryName { get; set; } /// /// /// public string CityID { get; set; } /// /// /// public string CityName { get; set; } /// /// /// public List MainCategoryList = new List(); /// /// /// public List SubCategoryList = new List(); /// /// /// public string Intro { get; set; } /// /// /// public DateTime? StartDate { get; set; } /// /// /// public DateTime? EndDate { get; set; } public int ExhibitorCount { get; set; } public int VisitorCount { get; set; } } }