You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.9 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Entity.ShowEasyDtos
  7. {
  8. public class ExhibitionDTO
  9. {
  10. public string ExhibitionID { get; set; }
  11. public string ExhibitionNo { get; set; }
  12. public string ExhibitionName { get; set; }
  13. public string ExhibitionENName { get; set; }
  14. public string AbbreviatedName { get; set; }
  15. public string VenueIDs { get; set; }
  16. public List<VenueDTO> Venues = new List<VenueDTO>();
  17. public RegionDTO Region = new RegionDTO();
  18. public CountryDTO Country = new CountryDTO();
  19. public CityDTO City = new CityDTO();
  20. public string OrganizerIDs { get; set; }
  21. public List<OrganizerDTO> Organizers = new List<OrganizerDTO>();
  22. public string Website { get; set; }
  23. public string Frequency { get; set; }
  24. public string Tags { get; set; }
  25. public string Status { get; set; }
  26. public string MainCategoryIDs { get; set; }
  27. public List<CategoryDTO> MainCategories = new List<CategoryDTO>();
  28. public string SubCategoryIDs { get; set; }
  29. public List<CategoryDTO> SubCategories = new List<CategoryDTO>();
  30. public string IsRecommend { get; set; }
  31. public string IsVirtualEvent { get; set; }
  32. public string VirtualEventLink { get; set; }
  33. public string Logo { get; set; }
  34. public string Intro { get; set; }
  35. public string Profile { get; set; }
  36. public string Detail { get; set; }
  37. public double ExhibSize { get; set; }
  38. public int VisitorCount { get; set; }
  39. public int IntVisitorCount { get; set; }
  40. public int ExhibitorCount { get; set; }
  41. public List<VideoDTO> Videos = new List<VideoDTO>();
  42. public List<ImageDTO> Images = new List<ImageDTO>();
  43. public DateTime? StartDate { get; set; }
  44. public DateTime? EndDate { get; set; }
  45. }
  46. }