mirror of
https://github.com/bitwarden/android.git
synced 2026-05-23 22:51:40 -05:00
14 lines
346 B
C#
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; }
|
|
}
|
|
}
|