using System.Collections.Generic; namespace BTCPayServer.Payouts { public class PayoutMethodHandlerDictionary : HandlersDictionary { public PayoutMethodHandlerDictionary(IEnumerable payoutHandlers) : base(payoutHandlers) { } } }