namespace ChatRoomServer.Www.Areas.Web.Models
{
using System;
///
///
///
public class HostResolve
{
///
///
///
public int Id { get; set; }
///
///
///
public string Host { get; set; }
///
///
///
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; }
}
}