11 lines
294 B
C#
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).*$";
|
|||
|
}
|
|||
|
}
|