1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-01 16:13:15 +00:00
Files
mobile/src/App/Abstractions/Services/IAppInfoService.cs
2017-11-27 17:27:11 -05:00

11 lines
252 B
C#

namespace Bit.App.Abstractions
{
public interface IAppInfoService
{
string Build { get; }
string Version { get; }
bool AutofillAccessibilityServiceEnabled { get; }
bool AutofillServiceEnabled { get; }
}
}