using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Sog; namespace Account { public class AccountTable : IServerDataObj { public Dictionary m_accountTable; public AccountTable() { m_accountTable = new Dictionary(); } public override int GetDataType() { return AccountDataObjType.AccountTable; } } }