RobotApp/RobotApp/Hubs/RobotMonitorHub.cs
Đăng Nguyễn f1a7be15f2 update
2025-12-22 18:38:35 +07:00

15 lines
280 B
C#

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);
}
}