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
719 B
29 lines
719 B
/*
|
|
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; }
|
|
}
|
|
}
|
|
|