sharee.bike-App/TINKLib/Model/Device/ISmartDevice.cs
2022-09-16 11:19:46 +02:00

24 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; }
}
}