10 lines
183 B
C#
10 lines
183 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Birdmap.BLL.Services.CommunicationServices.Hubs
|
|
{
|
|
public interface IServicesHubClient
|
|
{
|
|
Task NotifyUpdatedAsync();
|
|
}
|
|
}
|