using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Entity.ShowEasyDtos
{
public class ExhibitionDTO
{
///
///
///
public string ExhibitionID { get; set; }
///
///
///
public string ExhibitionNo { get; set; }
///
///
///
public string ExhibitionName { get; set; }
///
///
///
public string AbbreviatedName { get; set; }
/////
/////
/////
//public string VenueIDs { get; set; }
/////
/////
/////
//public string OrganizerIDs { get; set; }
///
///
///
public List Venues { get; set; }
///
///
///
public string RegionName { get; set; }
///
///
///
public string CountryName { get; set; }
///
///
///
public string CityName { get; set; }
///
///
///
public string OrganizerIDs { get; set; }
///
///
///
public string Website { get; set; }
///
///
///
public string Frequency { get; set; }
///
///
///
public string Tags { get; set; }
///
///
///
public string ExhibStatus { get; set; }
///
///
///
public string MainCategoryIDs { get; set; }
///
///
///
public string SubCategoryIDs { get; set; }
///
///
///
public string Recommend { get; set; }
///
///
///
public string IsVirtualEvent { get; set; }
///
///
///
public string VirtualEventLink { get; set; }
///
///
///
public string Logo { get; set; }
///
///
///
public string LanguageID { get; set; }
}
}