mirror of
https://github.com/bitwarden/mobile
synced 2026-01-01 16:13:15 +00:00
11 lines
252 B
C#
11 lines
252 B
C#
namespace Bit.App.Abstractions
|
|
{
|
|
public interface IAppInfoService
|
|
{
|
|
string Build { get; }
|
|
string Version { get; }
|
|
bool AutofillAccessibilityServiceEnabled { get; }
|
|
bool AutofillServiceEnabled { get; }
|
|
}
|
|
}
|