using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
/// 日志汇总
///
public class LogSummary
{
///
/// 日期
///
public string Date { get; set; }
///
/// 访客量
///
public int Visitors { get; set; }
}
}