mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
656 B
26 lines
656 B
namespace Volo.Abp.SettingManagement;
|
|
|
|
public static class SettingConsts
|
|
{
|
|
/// <summary>
|
|
/// Default value: 128
|
|
/// </summary>
|
|
public static int MaxNameLength { get; set; } = 128;
|
|
|
|
/// <summary>
|
|
/// Default value: 2048
|
|
/// </summary>
|
|
public static int MaxValueLength { get; set; } = 2048;
|
|
|
|
public static int MaxValueLengthValue { get; set; } = MaxValueLength;
|
|
|
|
/// <summary>
|
|
/// Default value: 64
|
|
/// </summary>
|
|
public static int MaxProviderNameLength { get; set; } = 64;
|
|
|
|
/// <summary>
|
|
/// Default value: 64
|
|
/// </summary>
|
|
public static int MaxProviderKeyLength { get; set; } = 64;
|
|
}
|
|
|