12 lines
293 B
C#
12 lines
293 B
C#
using DongfangHydro.Dashboard.Api.Contracts;
|
|
|
|
namespace DongfangHydro.Dashboard.Api.Realtime;
|
|
|
|
public interface IDashboardNotifier
|
|
{
|
|
Task PublishUpdateAsync(
|
|
UpdateNodeProgressResultDto update,
|
|
DashboardOverviewDto overview,
|
|
CancellationToken cancellationToken);
|
|
}
|