This repository has been archived on 2023-10-28. You can view files and clone it, but cannot push or open issues or pull requests.
pwt-0x01-ng/config.cs
surtur 344da21484
All checks were successful
continuous-integration/drone/push Build is passing
add: config values
* lockout_on_failure boolean default to true
* remember_me_feature boolean, default to false
2021-02-08 23:13:12 +01:00

10 lines
249 B
C#

namespace pwt_0x01_ng
{
public static class config
{
public static int min_passwd_length = 2;
public static int min_passwd_unique_chars = 1;
public static bool lockout_on_failure = true;
public static bool remember_me_feature = false;
}
}