sharee.bike-App/LockItShared/Model/Bikes/Bike/BluetoothLock/ILockInfo.cs
Anja Müller-Meißner 0468955d49 Version 3.0.338
2022-09-08 09:55:14 +02:00

12 lines
250 B
C#

namespace TINK.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; }
}
}