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.

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