96c3e350e8
* Added tasks basic classes * Added config api
18 lines
300 B
C#
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");
|
|
}
|
|
}
|
|
}
|