Files
btcpayserver/BTCPayServer/Events/NotificationEvent.cs
2020-06-14 23:49:08 -05:00

11 lines
256 B
C#

using BTCPayServer.Services.Notifications.Blobs;
namespace BTCPayServer.Events
{
internal class NotificationEvent
{
internal string[] ApplicationUserIds { get; set; }
internal NotificationBase Notification { get; set; }
}
}