10 lines
228 B
C#
10 lines
228 B
C#
|
|
using Microsoft.AspNetCore.SignalR;
|
||
|
|
|
||
|
|
namespace EngineeringSync.Service.Hubs;
|
||
|
|
|
||
|
|
public class NotificationHub : Hub
|
||
|
|
{
|
||
|
|
// Clients rufen hier keine Server-Methoden auf.
|
||
|
|
// Der Server pusht via IHubContext<NotificationHub>.
|
||
|
|
}
|