RobotApp/RobotApp/Hubs/RobotMonitorHub.cs
Đăng Nguyễn 2785a8f161 update
2025-12-30 15:17:42 +07:00

20 lines
285 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);
}
}