mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +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 NotificationBase Notification { get; set; }
|
|
}
|
|
}
|