sharee.bike-App/TINKLib/Model/Device/ISmartDevice.cs
Anja Müller-Meißner 573fe77e12 Version 3.0.337
2022-08-30 15:42:25 +02:00

23 lines
631 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; }
DevicePlatform Platform { get; }
/// <summary> Operating System Version Number (7.0) as text</summary>
string VersionText { get; }
}
}