2024-09-03 16:29:51 +02:00
|
|
|
namespace Foxnouns.Backend.Utils;
|
|
|
|
|
|
|
|
public static class Limits
|
|
|
|
{
|
|
|
|
public const int FieldLimit = 25;
|
|
|
|
public const int FieldNameLimit = 100;
|
|
|
|
public const int FieldEntryTextLimit = 100;
|
|
|
|
public const int FieldEntriesLimit = 100;
|
2024-10-02 00:28:07 +02:00
|
|
|
}
|