10 lines
190 B
C#
10 lines
190 B
C#
using Microsoft.Extensions.Hosting;
|
|
|
|
namespace Birdmap.BLL.Interfaces
|
|
{
|
|
public interface ICommunicationService : IHostedService
|
|
{
|
|
public bool IsConnected { get; }
|
|
}
|
|
}
|