Added entity-model mappers

Added and applied field size constants
This commit is contained in:
2026-08-16 10:08:33 +02:00
parent f7b30f89ea
commit 109fa0602e
20 changed files with 350 additions and 31 deletions
@@ -0,0 +1,14 @@
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;
}