10 lines
187 B
C#
10 lines
187 B
C#
|
using Microsoft.AspNetCore.SignalR.Client;
|
|||
|
|
|||
|
namespace Squirrowse.Client.Service
|
|||
|
{
|
|||
|
public interface IConnectionManager
|
|||
|
{
|
|||
|
HubConnection EstablishHubConnection();
|
|||
|
|
|||
|
}
|
|||
|
}
|