birbmap/Birdmap.BLL/Interfaces/ICommunicationService.cs

10 lines
190 B
C#
Raw Normal View History

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