sharee.bike-App/LockItShared/Model/Bikes/Bike/BluetoothLock/ILockInfo.cs
2021-05-13 17:07:16 +02:00

12 lines
271 B
C#

namespace TINK.Model.Bike.BluetoothLock
{
public interface ILockInfo
{
/// <summary> Identification number of bluetooth lock.</summary>
int Id { get; }
/// <summary> Gets the user key.</summary>
byte[] UserKey { get; }
}
}