This commit is contained in:
Đăng Nguyễn
2025-12-20 17:37:22 +07:00
parent 6cd32f8c98
commit 062a6478ce
17 changed files with 802 additions and 4 deletions

View File

@@ -0,0 +1,12 @@
using Microsoft.AspNetCore.SignalR;
namespace RobotApp.Hubs;
public class RobotMonitorHub : Hub
{
public async Task SendRobotMonitorData(RobotApp.Common.Shares.Dtos.RobotMonitorDto data)
{
await Clients.All.SendAsync("ReceiveRobotMonitorData", data);
}
}