birbmap/Birdmap.BLL/Interfaces/ICommunicationService.cs

10 lines
190 B
C#

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