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