|
|
|
|
@ -2,12 +2,24 @@
|
|
|
|
|
{
|
|
|
|
|
public static class FeatureValueConsts
|
|
|
|
|
{
|
|
|
|
|
public const int MaxNameLength = 128;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Default value: 128
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static int MaxNameLength { get; set;} = 128;
|
|
|
|
|
|
|
|
|
|
public const int MaxProviderNameLength = 64;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Default value: 64
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static int MaxProviderNameLength { get; set;} = 64;
|
|
|
|
|
|
|
|
|
|
public const int MaxProviderKeyLength = 64;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Default value: 64
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static int MaxProviderKeyLength { get; set;} = 64;
|
|
|
|
|
|
|
|
|
|
public const int MaxValueLength = 128;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Default value: 128
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static int MaxValueLength { get; set;} = 128;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|