using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Entity.ShowEasyDtos
{
public class ExhibInfoDTO
{
///
///
///
public string ExhibitionInfoID { get; set; }
///
///
///
public string ExhibitionID { get; set; }
///
///
///
public string Year { get; set; }
///
///
///
public DateTime? StartDate { get; set; }
///
///
///
public DateTime? EndDate { get; set; }
///
///
///
public string Intro { get; set; }
///
///
///
public string Profile { get; set; }
///
///
///
public string Detail { get; set; }
///
///
///
//public string LanguageID { get; set; }
}
}