using System; using System.Collections.Generic; using Sog; namespace Account { /// /// Sns好友经过http查询后的cache /// public class SnsFriendAccountInfoCache : IServerDataObj { // string:accounttype accountid public Dictionary m_cacheTable; public SnsFriendAccountInfoCache() { m_cacheTable = new Dictionary(); } public override int GetDataType() { return AccountDataObjType.SnsFriendInfoCache; } } }