15 lines
655 B
C#
15 lines
655 B
C#
namespace PluralKit.Core {
|
|
public static class Limits
|
|
{
|
|
public static readonly int MaxProxyNameLength = 80;
|
|
|
|
public static readonly int MaxSystemNameLength = 100;
|
|
public static readonly int MaxSystemTagLength = MaxProxyNameLength - 1;
|
|
public static readonly int MaxDescriptionLength = 1000;
|
|
public static readonly int MaxMemberNameLength = 100; // Fair bit larger than MaxProxyNameLength for bookkeeping
|
|
public static readonly int MaxPronounsLength = 100;
|
|
|
|
public static readonly long AvatarFileSizeLimit = 1024 * 1024;
|
|
public static readonly int AvatarDimensionLimit = 1000;
|
|
}
|
|
} |