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.
43 lines
932 B
43 lines
932 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 Chat
|
|
{
|
|
public class ChatServerConfig
|
|
{
|
|
//离线消息总缓存数量
|
|
public int TotalCacheNum { get; set; }
|
|
|
|
//单个频道限制
|
|
public int ChannalCacheMax { get; set; }
|
|
|
|
//存盘cd单位s
|
|
public int SaveFileCdSec { get; set; }
|
|
|
|
//存盘cd单位s
|
|
public int SaveMaxDay { get; set; }
|
|
|
|
public int isUseHeroSentiment { get; set; }
|
|
|
|
public string sentimentUrl { get; set; }
|
|
|
|
public int sentimentGameId { get; set; }
|
|
|
|
public string sentimentSecretKey{ get; set; }
|
|
|
|
public bool useWechatCheck { get; set; }
|
|
public string wxAppId { get; set; }
|
|
public string wxSecret { get; set; }
|
|
|
|
}
|
|
}
|
|
|