namespace ChatRoomServer.Www.Areas.Web.Models
{
using System;
///
///
///
public class ServerIp
{
///
///
///
public string Ip { get; set; }
///
///
///
public DateTime AddTime { get; set; }
///
///
///
public int ValidCount { get; set; }
///
///
///
public int FailedCount { get; set; }
///
///
///
public int SpeedCount { get; set; }
///
///
///
public int AverageSpeed { get; set; }
public int BrokenCount { get; set; }
}
}