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