BusinessConsts.cs 321 B

123456789101112131415
  1. namespace Business.Core
  2. {
  3. public static class BusinessConsts
  4. {
  5. public const int MaxNumeralLength = 16;
  6. public const int MaxCodeLength = 32;
  7. public const int MaxNameLength = 50;
  8. public const int MaxFullNameLength = 128;
  9. public const int MaxNotesLength = 256;
  10. }
  11. }