9 lines
222 B
C#
9 lines
222 B
C#
namespace MxGateway.Server.Dashboard;
|
|
|
|
public interface IDashboardSnapshotService
|
|
{
|
|
DashboardSnapshot GetSnapshot();
|
|
|
|
IAsyncEnumerable<DashboardSnapshot> WatchSnapshotsAsync(CancellationToken cancellationToken);
|
|
}
|