mirror of
https://github.com/bitwarden/mobile
synced 2026-01-06 02:23:57 +00:00
13 lines
290 B
C#
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; }
|
|
}
|
|
}
|