namespace TINK.Model.Bikes.BikeInfoNS.BluetoothLock
{
public interface IVersionInfo
{
///
/// Holds the firmware version of the lock.
///
int FirmwareVersion { get; }
///
/// Holds the hardware version (revision) of the lock.
///
int HardwareVersion { get; }
///
/// Holds lock version (2 – classic, 3 – plus, 4 – GPS).
///
int LockVersion { get; }
}
}