mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-24 11:55:38 +01:00
use string.Empty
This commit is contained in:
parent
5d719ba235
commit
c6b37307b0
@ -2,7 +2,7 @@
|
||||
{
|
||||
public class PasswordGeneratorPolicyOptions
|
||||
{
|
||||
public string DefaultType { get; set; } = "";
|
||||
public string DefaultType { get; set; } = string.Empty;
|
||||
public int MinLength { get; set; }
|
||||
public bool UseUppercase { get; set; }
|
||||
public bool UseLowercase { get; set; }
|
||||
@ -13,13 +13,13 @@
|
||||
public int MinNumberOfWords { get; set; }
|
||||
public bool Capitalize { get; set; }
|
||||
public bool IncludeNumber { get; set; }
|
||||
|
||||
|
||||
public bool InEffect()
|
||||
{
|
||||
return DefaultType != "" ||
|
||||
MinLength > 0 ||
|
||||
NumberCount > 0 ||
|
||||
SpecialCount > 0 ||
|
||||
return DefaultType != string.Empty ||
|
||||
MinLength > 0 ||
|
||||
NumberCount > 0 ||
|
||||
SpecialCount > 0 ||
|
||||
UseUppercase ||
|
||||
UseLowercase ||
|
||||
UseNumbers ||
|
||||
|
Loading…
Reference in New Issue
Block a user