btcpayserver/BTCPayServer/Services/Notifications/NotificationScopes.cs

26 lines
516 B
C#
Raw Normal View History

2020-06-28 21:44:35 -05:00
using System;
namespace BTCPayServer.Services.Notifications
{
public class AdminScope : NotificationScope
{
public AdminScope()
{
}
}
public class StoreScope : NotificationScope
{
public StoreScope(string storeId)
{
if (storeId == null)
throw new ArgumentNullException(nameof(storeId));
StoreId = storeId;
}
public string StoreId { get; }
}
public interface NotificationScope
{
}
}