using Entity.ShowEasyDtos; using Entity.Sugar; using System.Collections.Generic; namespace Entity.ViewModels { public class View_CMS_ExhibInfo : SETB_CMS_Exhibition_Info { public string JsonOrganizers { get; set; } public string JsonVenues { get; set; } public string RegionIDs { get; set; } public string CountryIDs { get; set; } public string CityIDs { get; set; } public List Venues = new List(); public List Organizers = new List(); public int OrderCount { get; set; } } }