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.
15 lines
322 B
15 lines
322 B
namespace BaseService
|
|
{
|
|
public static class BaseServiceConsts
|
|
{
|
|
public const int MaxNumeralLength = 16;
|
|
|
|
public const int MaxCodeLength = 32;
|
|
|
|
public const int MaxNameLength = 50;
|
|
|
|
public const int MaxFullNameLength = 128;
|
|
|
|
public const int MaxNotesLength = 256;
|
|
}
|
|
}
|
|
|