20 lines
440 B
C#
20 lines
440 B
C#
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; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public Dictionary<string, Dictionary<string, HostResolve>> HostMap { get; set; } = new Dictionary<string, Dictionary<string, HostResolve>>();
|
|
}
|
|
} |