feat(adminui): FleetStatusHub + AlertHub + MapOtOpcUaHubs (broadcaster bridge tracked as F16)

This commit is contained in:
Joseph Doherty
2026-05-26 05:17:56 -04:00
parent 1a067e609c
commit 26d8f2f620
3 changed files with 41 additions and 0 deletions
@@ -0,0 +1,9 @@
using Microsoft.AspNetCore.SignalR;
namespace ZB.MOM.WW.OtOpcUa.AdminUI.Hubs;
/// <summary>Browser-facing alert / toast push channel. Bridge wiring staged for F16.</summary>
public sealed class AlertHub : Hub
{
public const string Endpoint = "/hubs/alerts";
}