using System; namespace CB.TVUCenter.Config { public class TVConfigInfo { /// /// 测试调试用--正式环境请设置为false /// public bool Debug { get; set; } /// /// 默认解密Key,Key长度为16位 /// public string DecryptKey { get; set; } /// /// 默认加密补足字符串 base64编码 /// public string ExEncryptKey { get; set; } /// /// 走势图加密密钥 base64编码 /// public string TrendChartEncryptKey { get; set; } /// /// 默认APP开机图片(横向) /// public string InitImg { get; set; } /// /// 纵向APP开机图片 /// public string InitVerticalImg { get; set; } /// /// 默认背景图片(横向) /// public string BackgroundImg { get; set; } /// /// 纵向背景图片 /// public string BackgroundVerticalImg { get; set; } /// /// 清除无效在线API用户校验时间(分钟),默认5分钟 /// public int ClearOnlineUserTime { get; set; } /// /// API用户解锁时间(分钟),默认120分钟 /// public int UnLockTime { get; set; } /// /// API调用频率限制值(每分钟调用次数),默认60次每分钟 /// public int ApiCallTimes { get; set; } /// /// API调用计算周期(分钟),默认1分钟 /// public int ApiCallCycle { get; set; } /// /// 区域本号 /// public int AreaVersion { get; set; } /// /// 图片版本号 /// public int ImgVersion { get; set; } /// /// 是否用浏览器打开走势图,默认true。否则用自带控件打开走势图 /// public bool ShowByBrowser { get; set; } } }