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