using Xamarin.Essentials;
namespace TINK.Model.Device
{
public interface ISmartDevice
{
/// Gets unitque device identifier.
/// Gets the identifies specifying device.
string Identifier { get; }
/// Manufacturer (Samsung).
string Manufacturer { get; }
/// Device Model (SMG-950U, iPhone10,6).
string Model { get; }
/// Operation system.
DevicePlatform Platform { get; }
/// Operating System Version Number (7.0) as text
string VersionText { get; }
}
}