31 lines
		
	
	
		
			888 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			888 B
		
	
	
	
		
			C#
		
	
	
	
| using System.Collections.Generic;
 | ||
| 
 | ||
| //自定义在线参数,后面改json配置文件,暂时用代码文件顶替
 | ||
| public static class TKGParams
 | ||
| {
 | ||
|     public static readonly Dictionary<string, object> OnlineParamDic = new Dictionary<string, object>()
 | ||
|     {
 | ||
|         { TKGParamKey.UserGroup.ToString(), "Default" },
 | ||
|         { TKGParamKey.RemoveAdsShow.ToString(), 2 },
 | ||
|         { TKGParamKey.RemoveAds.ToString(), 4 },
 | ||
|         { TKGParamKey.LevelInterSwitch.ToString(), 3 },
 | ||
|         { TKGParamKey.NativeSwitch.ToString(), 1 },
 | ||
| 
 | ||
|         { TKGParamKey.AutoMergeOpenLv.ToString(), 20},
 | ||
|         { TKGParamKey.AutoMergeAddCount.ToString(), 20},
 | ||
|         { TKGParamKey.SellWarningLevel.ToString(), 4}
 | ||
|     };
 | ||
| }
 | ||
| 
 | ||
| public enum TKGParamKey
 | ||
| {
 | ||
|     UserGroup,
 | ||
|     RemoveAdsShow,
 | ||
|     RemoveAds,
 | ||
|     LevelInterSwitch,
 | ||
|     NativeSwitch,
 | ||
| 
 | ||
|     AutoMergeOpenLv,
 | ||
|     AutoMergeAddCount,
 | ||
|     SellWarningLevel
 | ||
| } |