mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
20 lines
451 B
C#
20 lines
451 B
C#
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; }
|
||
}
|
||
}
|