sharee.bike-App/TINKLib/Model/Bikes/BikeInfoNS/BluetoothLock/IVersionInfo.cs

21 lines
451 B
C#
Raw Normal View History

2022-09-20 13:51:55 +02:00
namespace TINK.Model.Bikes.BikeInfoNS.BluetoothLock
{
public interface IVersionInfo
{
/// <summary>
/// Holds the firmware version of the lock.
/// </summary>
int FirmwareVersion { get; }
/// <summary>
/// Holds the hardware version (revision) of the lock.
/// </summary>
int HardwareVersion { get; }
/// <summary>
/// Holds lock version (2 classic, 3 plus, 4 GPS).
/// </summary>
int LockVersion { get; }
}
}