RaceLapTimer/RaceLapTimer/Interfaces/ITransponderUtilityProvider.cs
chris.watts90@outlook.com 08b4879526 added asynchelper to run task/async method synchronously
Added TransponderUtility Factories and providers to irdaemon.
2017-06-24 10:26:31 +01:00

10 lines
163 B
C#

using System.Threading.Tasks;
namespace Interfaces
{
public interface ITransponderUtilityProvider
{
Task<int> GetLastScannedIdAsync();
}
}