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.
abp/modules/cms-kit/src/Volo.CmsKit.Domain.Shared/Volo/CmsKit/GlobalResources/GlobalResourceConsts.cs

12 lines
342 B

namespace Volo.CmsKit.GlobalResources;
public static class GlobalResourceConsts
{
public const string GlobalStyleName = "GlobalStyle";
public const string GlobalScriptName = "GlobalScript";
public static int MaxNameLength { get; set; } = 128;
public static int MaxValueLength { get; set; } = int.MaxValue;
}