bitwarden-android/src/App/Models/AppOptions.cs

16 lines
425 B
C#
Raw Normal View History

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; }
2017-11-18 01:15:42 +03:00
public string SaveName { get; set; }
public string SaveUsername { get; set; }
public string SavePassword { get; set; }
}
}