mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
15 lines
380 B
C#
15 lines
380 B
C#
|
using Bit.App.Enums;
|
|||
|
|
|||
|
namespace Bit.App.Models
|
|||
|
{
|
|||
|
public class AppOptions
|
|||
|
{
|
|||
|
public bool MyVault { get; set; }
|
|||
|
public bool FromAutofillFramework { get; set; }
|
|||
|
public string Uri { get; set; }
|
|||
|
public CipherType? SaveType { get; set; }
|
|||
|
public string SaveUsername { get; set; }
|
|||
|
public string SavePassword { get; set; }
|
|||
|
}
|
|||
|
}
|