15 lines
474 B
C#
15 lines
474 B
C#
using Microsoft.Extensions.Hosting;
|
|
using MQTTnet.Client.Connecting;
|
|
using MQTTnet.Client.Disconnecting;
|
|
using MQTTnet.Client.Receiving;
|
|
|
|
namespace Birdmap.BLL.Interfaces
|
|
{
|
|
public interface IMqttClientService : IHostedService,
|
|
IMqttClientConnectedHandler,
|
|
IMqttClientDisconnectedHandler,
|
|
IMqttApplicationMessageReceivedHandler
|
|
{
|
|
}
|
|
}
|