mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-29 11:54:27 +01:00
11 lines
256 B
C#
11 lines
256 B
C#
using BTCPayServer.Services.Notifications.Blobs;
|
|
|
|
namespace BTCPayServer.Events
|
|
{
|
|
internal class NotificationEvent
|
|
{
|
|
internal string[] ApplicationUserIds { get; set; }
|
|
internal BaseNotification Notification { get; set; }
|
|
}
|
|
}
|