mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
11 lines
250 B
C#
11 lines
250 B
C#
|
using Android.OS;
|
||
|
using Bit.App.Abstractions;
|
||
|
|
||
|
namespace Bit.Android.Services
|
||
|
{
|
||
|
public class DeviceInfoService : IDeviceInfoService
|
||
|
{
|
||
|
public string Model => Build.Model;
|
||
|
public int Version => (int)Build.VERSION.SdkInt;
|
||
|
}
|
||
|
}
|