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

12 lines
283 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
{
public interface ILockInfo
{
/// <summary> Identification number of bluetooth lock.</summary>
int Id { get; }
/// <summary> Gets the user key.</summary>
byte[] UserKey { get; }
}
}