Files
btcpayserver/BTCPayServer/Services/Notifications/Blobs/NotificationAttribute.cs
2020-06-15 17:19:03 +09:00

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; }
}
}