using Microsoft.AspNetCore.SignalR;
using System.Threading.Tasks;
namespace GDZZ.Application.Service.LiveChat
{
///
/// 即时聊天
///
public class LiveChatService: Hub
{
public LiveChatService()
{
}
///
/// 创建聊天
///
///
Task CreateLinkCaht()
{
return Task.FromResult(true);
}
}
}