using Microsoft.Extensions.Hosting; namespace Birdmap.BLL.Interfaces { public interface ICommunicationService : IHostedService { public bool IsConnected { get; } } }