You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
619 B

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