sharee.bike-App/LockItShared/Services/BluetoothLock/ITimeOutProvide.cs

12 lines
180 B
C#
Raw Normal View History

2021-05-13 17:07:16 +02:00
using System;
namespace TINK.Services.BluetoothLock
{
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
}