mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
21 lines
654 B
C#
21 lines
654 B
C#
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> Platform (Android). </summary>
|
|
string PlatformText { get; }
|
|
|
|
/// <summary> Operating System Version Number (7.0) as text</summary>
|
|
string VersionText { get; }
|
|
}
|
|
}
|