mirror of
https://github.com/snltty/linker.git
synced 2025-11-01 04:53:15 +08:00
25 lines
497 B
C#
25 lines
497 B
C#
namespace cmonitor.client.reports.notify
|
|
{
|
|
public sealed class NotifyReport : IReport
|
|
{
|
|
public string Name => "Notify";
|
|
|
|
private readonly INotify notify;
|
|
public NotifyReport(INotify notify)
|
|
{
|
|
this.notify = notify;
|
|
}
|
|
|
|
public object GetReports(ReportType reportType)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public void Update(NotifyInfo notify)
|
|
{
|
|
this.notify.Update(notify);
|
|
}
|
|
}
|
|
}
|
|
|