/* Sog 游戏基础库 2016 by zouwei */ using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Runtime.Serialization; using Sog; namespace Friend { public class FriendServerConfig { //好友 public int friendSelfCountMax { get; set; } public int friendListCountMax { get; set; } public int friendOpListCountMax { get; set; } public int friendChatListCountMax { get; set; } public int friendStrangerListCountMax { get; set; } //好友数据cache未访问超时时间,分钟 public int friendCacheTimeoutMinute { get; set; } public int maxBlacklistCount { get; set; } } }