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.
47 lines
936 B
47 lines
936 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Entity.ShowEasyDtos
|
|
{
|
|
public class ExhibStatDTO
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string StatisticsID { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string ExhibitionID { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Year { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public float ExhibSize { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int VisitorCount { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int IntVisitorCount { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int ExhibitorCount { get; set; }
|
|
|
|
}
|
|
}
|