using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
/// 登录统计
///
public class LoginStatistics
{
///
/// 公司名
///
public string CorpName { get; set; }
///
/// 软件
///
public string Software { get; set; }
///
/// 访客量
///
public int Visitors { get; set; }
}
}