Bitwarden-app-android-iphon.../src/iOS.Core/Models/PasswordGenerationOptions.cs

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; }
}
}