Files
RobotApp/RobotApp/Hubs/RobotMonitorHub.cs
Đăng Nguyễn 15a61fd986 update
2025-12-30 17:38:43 +07:00

21 lines
286 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);
}
}