/* 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; } } }