You've already forked CC-Framework.BriskGameServer
17 lines
396 B
C#
17 lines
396 B
C#
using System.Collections.Generic;
|
|
|
|
/// <summary>
|
|
/// 当前客户端命中的动态配置结果。
|
|
/// </summary>
|
|
public sealed class BriskConfigCurrent
|
|
{
|
|
/// <summary>
|
|
/// 功能开关集合。
|
|
/// </summary>
|
|
public Dictionary<string, object> FeatureFlags;
|
|
/// <summary>
|
|
/// 动态配置集合。
|
|
/// </summary>
|
|
public Dictionary<string, object> DynamicConfig;
|
|
}
|