Files
podnoms/server/Services/Hubs/ChatHub.cs
Fergal Moran 797de94e73 Pre mess
2018-05-11 16:36:19 +01:00

13 lines
246 B
C#

using System;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.SignalR;
namespace PodNoms.Api.Services.Hubs {
[Authorize]
public class ChatHub : Hub {
}
}