Files
cms_thermo_active/Step/Controllers/SignalR/DataHub.cs
T
Lucio Maranta 96c3e350e8 * Refactoring
* Added tasks basic classes
* Added config api
2017-12-12 12:12:31 +01:00

18 lines
300 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Microsoft.AspNet.SignalR;
using Microsoft.AspNet.SignalR.Hubs;
namespace Step.Controllers.SignalR
{
public class DataHub : Hub
{
public void Hello()
{
Clients.All.hello("Ciao");
}
}
}