|
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;
|
|
}
|
|
}
|
|
|