birbmap/Birdmap.BLL/Services/CommunationServices/Hubs/IServicesHubClient.cs

10 lines
183 B
C#
Raw Normal View History

using System.Threading.Tasks;
namespace Birdmap.BLL.Services.CommunicationServices.Hubs
{
public interface IServicesHubClient
{
Task NotifyUpdatedAsync();
}
}