This commit is contained in:
Michael 2017-04-17 09:07:41 -04:00
parent 6f78b9384a
commit c205ac0b78

View file

@ -8,9 +8,9 @@ namespace Project_Unite
{
public class NotificationHub : Hub
{
public string Activate()
public string SendMessage(string message)
{
return "Monitor Activated";
return message;
}
}