10 lines
213 B
C#
10 lines
213 B
C#
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.SignalR.Client;
|
|
|
|
namespace Squirrowse.Client.Service
|
|
{
|
|
public interface IConnectionManager
|
|
{
|
|
Task<HubConnection> GetConnection();
|
|
}
|
|
} |