mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
12 lines
383 B
C#
12 lines
383 B
C#
|
using TINK.Model.Device;
|
|||
|
|
|||
|
namespace TINK.Services.BluetoothLock.BLE
|
|||
|
{
|
|||
|
public class LockItByScanServiceEventBased : LockItByScanServiceBase, ILocksService
|
|||
|
{
|
|||
|
public LockItByScanServiceEventBased(ICipher cipher) : base(
|
|||
|
cipher,
|
|||
|
(bleDevice, authInfo, adapter) => LockItEventBased.Authenticate(bleDevice, authInfo, adapter, cipher)) { }
|
|||
|
}
|
|||
|
}
|