16 lines
403 B
C#
16 lines
403 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Birdmap.API.Services
|
|
{
|
|
public record Message(Guid DeviceId, DateTime Date, double Probability);
|
|
|
|
public interface IDevicesHubClient
|
|
{
|
|
Task NotifyMessagesAsync(IEnumerable<Message> messages);
|
|
Task NotifyDeviceUpdatedAsync(Guid deviceId);
|
|
Task NotifyAllUpdatedAsync();
|
|
}
|
|
}
|