1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-06 02:23:57 +00:00
Files
mobile/src/App/Abstractions/Services/IDeviceInfoService.cs
2017-11-27 17:27:11 -05:00

13 lines
290 B
C#

namespace Bit.App.Abstractions
{
public interface IDeviceInfoService
{
string Model { get; }
int Version { get; }
float Scale { get; }
bool NfcEnabled { get; }
bool HasCamera { get; }
bool AutofillServiceSupported { get; }
}
}