Files
pfm/PostFundManagement.Domain/Extensions/Constants.cs
T
hermes 109fa0602e Added entity-model mappers
Added and applied field size constants
2026-08-16 10:08:33 +02:00

14 lines
302 B
C#

namespace PostFundManagement.Domain.Extensions;
public static class Constants
{
public const int LabelLength = 256;
public const int ShortLabelLength = 100;
public const int TextLength = 1024;
public const int MediumTextLength = 2048;
public const int LargeTextLength = 4096;
}