mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
23 lines
604 B
C#
23 lines
604 B
C#
using Xamarin.Essentials;
|
|
|
|
namespace TINK.Model.Device
|
|
{
|
|
public interface ISmartDevice
|
|
{
|
|
/// <summary> Gets unitque device identifier. </summary>
|
|
/// <returns>Gets the identifies specifying device.</returns>
|
|
string Identifier { get; }
|
|
|
|
/// <summary> Manufacturer (Samsung). </summary>
|
|
string Manufacturer { get; }
|
|
|
|
/// <summary> Device Model (SMG-950U, iPhone10,6). </summary>
|
|
string Model { get; }
|
|
|
|
/// <summary> Operation system. </summary>
|
|
DevicePlatform Platform { get; }
|
|
|
|
/// <summary> Operating System Version Number (7.0) as text</summary>
|
|
string VersionText { get; }
|
|
}
|
|
}
|