birbmap/Birdmap.BLL/Interfaces/ICommunicationServiceProvider.cs

8 lines
157 B
C#
Raw Normal View History

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