birbmap/Birdmap.BLL/Interfaces/ICommunicationService.cs

8 lines
136 B
C#
Raw Normal View History

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