Files

8 lines
155 B
C#

namespace MiaoJiZhang.Api.Services;
public static class AdminPasswordPolicy
{
public const int MinLength = 6;
public const int MaxLength = 128;
}