SocialPub/SocialPub.ClientModels/Constants.cs
2023-02-18 08:52:17 +01:00

11 lines
294 B
C#

namespace SocialPub.ClientModels
{
public static class Constants
{
public const int MinPasswordLength = 7;
public const int MaxPasswordLength = 1025;
public const int GroupInvitationLength = 64;
public const string PasswordRegex = @"^(?=.*)(?=.*[a-z])(?=.*[A-Z])(?!.*\s).*$";
}
}