bitwarden-mobile/src/App/Abstractions/Services/IDeviceInfoService.cs

9 lines
149 B
C#

namespace Bit.App.Abstractions
{
public interface IDeviceInfoService
{
string Model { get; }
int Version { get; }
}
}