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