using System.Collections.Generic; using System.Linq; using System.Web; namespace ChatRoomServer.Www.Areas.Web.Models { using System; public class HostResolveCache { public int ServeCount { get; set; } public int UpdateCount { get; set; } /// /// /// public Dictionary> HostMap { get; set; } = new Dictionary>(); } }