namespace Volo.Abp.SettingManagement; public static class SettingConsts { /// /// Default value: 128 /// public static int MaxNameLength { get; set; } = 128; /// /// Default value: 2048 /// public static int MaxValueLength { get; set; } = 2048; public static int MaxValueLengthValue { get; set; } = MaxValueLength; /// /// Default value: 64 /// public static int MaxProviderNameLength { get; set; } = 64; /// /// Default value: 64 /// public static int MaxProviderKeyLength { get; set; } = 64; }