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.

55 lines
1.8 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 List<VenueDTO> Venues = new List<VenueDTO>();
  16. public RegionDTO Region = new RegionDTO();
  17. public CountryDTO Country = new CountryDTO();
  18. public CityDTO City = new CityDTO();
  19. public string OrganizerIDs { get; set; }
  20. public List<OrganizerDTO> Organizers = new List<OrganizerDTO>();
  21. public string Website { get; set; }
  22. public string Frequency { get; set; }
  23. public string Tags { get; set; }
  24. public string Status { get; set; }
  25. public List<CategoryDTO> MainCategories = new List<CategoryDTO>();
  26. public List<CategoryDTO> SubCategories = new List<CategoryDTO>();
  27. public string IsRecommend { get; set; }
  28. public string IsVirtualEvent { get; set; }
  29. public string VirtualEventLink { get; set; }
  30. public string Logo { get; set; }
  31. public string Intro { get; set; }
  32. public string Profile { get; set; }
  33. public string Detail { get; set; }
  34. public double ExhibSize { get; set; }
  35. public int VisitorCount { get; set; }
  36. public int IntVisitorCount { get; set; }
  37. public int ExhibitorCount { get; set; }
  38. public List<VideoDTO> Videos = new List<VideoDTO>();
  39. public List<ImageDTO> Images = new List<ImageDTO>();
  40. public DateTime? StartDate { get; set; }
  41. public DateTime? EndDate { get; set; }
  42. }
  43. }