sharee.bike-App/LockIt.BusinessLogic/Services/BluetoothLock/ITimeOutProvide.cs

12 lines
186 B
C#
Raw Normal View History

2021-05-13 17:07:16 +02:00
using System;
2024-04-09 12:53:23 +02:00
namespace ShareeBike.Services.BluetoothLock
2021-05-13 17:07:16 +02:00
{
2022-09-06 16:08:19 +02:00
public interface ITimeOutProvider
{
TimeSpan MultiConnect { get; }
2021-05-13 17:07:16 +02:00
2022-09-06 16:08:19 +02:00
TimeSpan GetSingleConnect(int countOfTry);
}
2021-05-13 17:07:16 +02:00
}