mirror of
https://github.com/bitwarden/mobile
synced 2025-12-10 05:13:31 +00:00
16 lines
392 B
C#
16 lines
392 B
C#
namespace Bit.App.Abstractions
|
|
{
|
|
public interface IDeviceInfoService
|
|
{
|
|
string Type { get; }
|
|
string Model { get; }
|
|
int Version { get; }
|
|
float Scale { get; }
|
|
bool NfcEnabled { get; }
|
|
bool HasCamera { get; }
|
|
bool AutofillServiceSupported { get; }
|
|
bool HasFaceIdSupport { get; }
|
|
bool IsExtension { get; }
|
|
}
|
|
}
|