mirror of
https://github.com/lempamo/Project-Unite.git
synced 2025-02-03 13:17:33 +00:00
17 lines
No EOL
310 B
C#
17 lines
No EOL
310 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using Microsoft.AspNet.SignalR;
|
|
|
|
namespace Project_Unite
|
|
{
|
|
public class NotificationHub : Hub
|
|
{
|
|
public string SendMessage(string message)
|
|
{
|
|
return message;
|
|
|
|
}
|
|
}
|
|
} |