Files
mxaccessgw/src/MxGateway.Server/Dashboard/IDashboardSnapshotService.cs
T
2026-04-26 17:49:59 -04:00

9 lines
222 B
C#

namespace MxGateway.Server.Dashboard;
public interface IDashboardSnapshotService
{
DashboardSnapshot GetSnapshot();
IAsyncEnumerable<DashboardSnapshot> WatchSnapshotsAsync(CancellationToken cancellationToken);
}