mirror of
https://github.com/bitwarden/android.git
synced 2026-05-10 16:45:43 -05:00
20 lines
616 B
C#
20 lines
616 B
C#
using System;
|
|
|
|
namespace Bit.App.Abstractions
|
|
{
|
|
public interface IAppSettingsService
|
|
{
|
|
bool Locked { get; set; }
|
|
DateTime LastActivity { get; set; }
|
|
DateTime LastCacheClear { get; set; }
|
|
bool AutofillPersistNotification { get; set; }
|
|
bool AutofillPasswordField { get; set; }
|
|
bool DisableWebsiteIcons { get; set; }
|
|
string SecurityStamp { get; set; }
|
|
string BaseUrl { get; set; }
|
|
string WebVaultUrl { get; set; }
|
|
string ApiUrl { get; set; }
|
|
string IdentityUrl { get; set; }
|
|
string IconsUrl { get; set; }
|
|
}
|
|
} |