using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Entity.ShowEasyDtos
{
public class ExhibStatDTO
{
///
///
///
public string StatisticsID { get; set; }
///
///
///
public string ExhibitionID { get; set; }
///
///
///
public string Year { get; set; }
///
///
///
public float ExhibSize { get; set; }
///
///
///
public int VisitorCount { get; set; }
///
///
///
public int IntVisitorCount { get; set; }
///
///
///
public int ExhibitorCount { get; set; }
}
}