15 lines
361 B
C#
15 lines
361 B
C#
namespace Prefab.Base.Catalog.Attributes;
|
|
|
|
public static class AttributeDefinitionRules
|
|
{
|
|
public const int NameMaxLength = 256;
|
|
public const int UnitMaxLength = 32;
|
|
}
|
|
|
|
public static class ProductAttributeValueRules
|
|
{
|
|
public const int ValueMaxLength = 1024;
|
|
public const int UnitCodeMaxLength = 32;
|
|
public const int EnumCodeMaxLength = 64;
|
|
}
|