11 lines
241 B
C#
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>();
|
|||
|
}
|
|||
|
}
|