mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-16 23:26:26 +01:00
11 lines
186 B
C#
11 lines
186 B
C#
using System;
|
|
|
|
namespace ShareeBike.Services.BluetoothLock
|
|
{
|
|
public interface ITimeOutProvider
|
|
{
|
|
TimeSpan MultiConnect { get; }
|
|
|
|
TimeSpan GetSingleConnect(int countOfTry);
|
|
}
|
|
}
|