zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Server/Model/Game/Entity/SessionCountCheckComponent.cs

11 lines
241 B
C#

using System.Collections.Generic;
using System.Net;
namespace ET
{
public class SessionCountCheckComponent:Entity
{
public long timerId;
public Dictionary<long, int> countDic = new Dictionary<long, int>();
}
}