mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2025-04-19 03:27:29 +02:00
Code updated to 3.0.238
This commit is contained in:
parent
3302d80678
commit
9c6a1fa92b
257 changed files with 7763 additions and 2861 deletions
21
TINKLib/Model/Device/ISmartDevice.cs
Normal file
21
TINKLib/Model/Device/ISmartDevice.cs
Normal file
|
@ -0,0 +1,21 @@
|
|||
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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue