13 lines
308 B
C#
13 lines
308 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Birdmap.API.Services
|
|
{
|
|
public interface IDevicesHubClient
|
|
{
|
|
Task NotifyDeviceAsync(Guid deviceId, DateTime date, double probability);
|
|
Task NotifyDeviceUpdatedAsync(Guid deviceId);
|
|
Task NotifyAllUpdatedAsync();
|
|
}
|
|
}
|