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.

28 lines
615 B

  1. using Entity.ShowEasyDtos;
  2. using Entity.Sugar;
  3. using System.Collections.Generic;
  4. namespace Entity.ViewModels
  5. {
  6. public class View_CMS_ExhibInfo : SETB_CMS_Exhibition_Info
  7. {
  8. public string JsonOrganizers { get; set; }
  9. public string JsonVenues { get; set; }
  10. public string RegionIDs { get; set; }
  11. public string CountryIDs { get; set; }
  12. public string CityIDs { get; set; }
  13. public List<VenueDTO> Venues = new List<VenueDTO>();
  14. public List<OrganizerDTO> Organizers = new List<OrganizerDTO>();
  15. public int OrderCount { get; set; }
  16. }
  17. }