SocialPub/SocialPub.ClientModels/Constants.cs

11 lines
294 B
C#
Raw Normal View History

2023-02-18 08:52:17 +01:00
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).*$";
}
}