1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-26 10:36:21 +02:00
bitwarden-mobile/src/iOS.Core/Models/PasswordGenerationOptions.cs
2019-06-26 20:28:23 -04:00

14 lines
346 B
C#

using System;
namespace Bit.iOS.Core.Models
{
public class PasswordGenerationOptions
{
public int MinLength { get; set; }
public int MaxLength { get; set; }
public bool RequireDigits { get; set; }
public bool RequireSymbols { get; set; }
public string ForbiddenCharacters { get; set; }
}
}