Initial version.

This commit is contained in:
Oliver Hauff 2021-05-13 17:07:16 +02:00
commit 6bab491a21
40 changed files with 1812 additions and 0 deletions

View file

@ -0,0 +1,11 @@
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; }
}
}