mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-28 19:34:23 +01:00
20 lines
450 B
C#
20 lines
450 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Events.Notifications
|
|
{
|
|
public static class NotificationsHelperExt
|
|
{
|
|
public static void NoticeNewVersion(this EventAggregator aggr, string version)
|
|
{
|
|
aggr.Publish(new NewVersionNotification
|
|
{
|
|
Version = version
|
|
});
|
|
}
|
|
}
|
|
}
|