mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
17 lines
462 B
C#
17 lines
462 B
C#
|
using BTCPayServer.Payments;
|
||
|
using BTCPayServer.Services.Invoices;
|
||
|
using Newtonsoft.Json.Linq;
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Diagnostics.CodeAnalysis;
|
||
|
|
||
|
namespace BTCPayServer.Payouts
|
||
|
{
|
||
|
public class PayoutMethodHandlerDictionary : HandlersDictionary<PayoutMethodId, IPayoutHandler>
|
||
|
{
|
||
|
public PayoutMethodHandlerDictionary(IEnumerable<IPayoutHandler> payoutHandlers) : base(payoutHandlers)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|