2020-11-09 18:12:07 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2020-11-09 18:13:02 +01:00
|
|
|
|
namespace Birdmap.API.Services
|
2020-11-09 18:12:07 +01:00
|
|
|
|
{
|
|
|
|
|
public interface IDevicesHubClient
|
|
|
|
|
{
|
|
|
|
|
Task NotifyDeviceAsync(Guid deviceId, DateTime date, double probability);
|
|
|
|
|
}
|
|
|
|
|
}
|