sharee.bike-App/LockItShared/Model/Bikes/Bike/BluetoothLock/ILockInfo.cs

12 lines
250 B
C#
Raw Normal View History

2022-08-30 15:42:25 +02:00
namespace TINK.Model.Bikes.BikeInfoNS.BluetoothLock
2021-05-13 17:07:16 +02:00
{
2022-09-06 16:08:19 +02:00
public interface ILockInfo
{
/// <summary> Identification number of bluetooth lock.</summary>
int Id { get; }
2021-05-13 17:07:16 +02:00
2022-09-06 16:08:19 +02:00
/// <summary> Gets the user key.</summary>
byte[] UserKey { get; }
}
2021-05-13 17:07:16 +02:00
}