mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 06:24:24 +01:00
18 lines
444 B
C#
18 lines
444 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Services.Notifications.Blobs
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class NotificationAttribute : Attribute
|
|
{
|
|
public NotificationAttribute(string notificationType)
|
|
{
|
|
NotificationType = notificationType;
|
|
}
|
|
public string NotificationType { get; }
|
|
}
|
|
}
|