Update FeatureValueConsts.cs

pull/4527/head
Ahmet Çotur 5 years ago
parent 1502f14496
commit 89f1125a62

@ -2,12 +2,24 @@
{ {
public static class FeatureValueConsts 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;
} }
} }

Loading…
Cancel
Save