sharee.bike-App/LockIt.BusinessLogic/Model/Bikes/Bike/BluetoothLock/ILockInfo.cs
2024-04-09 12:53:23 +02:00

12 lines
256 B
C#

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