2021-01-17 15:41:06 +01:00
|
|
|
|
using Microsoft.Extensions.Hosting;
|
|
|
|
|
|
|
|
|
|
namespace Birdmap.BLL.Interfaces
|
2021-01-16 15:23:10 +01:00
|
|
|
|
{
|
2021-01-17 15:41:06 +01:00
|
|
|
|
public interface ICommunicationService : IHostedService
|
2021-01-16 15:23:10 +01:00
|
|
|
|
{
|
|
|
|
|
public bool IsConnected { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|