mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
18 lines
613 B
C#
18 lines
613 B
C#
|
using System.Collections.Generic;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using BTCPayServer.Data.Data;
|
|||
|
using BTCPayServer.Payments;
|
|||
|
using Microsoft.AspNetCore.Http;
|
|||
|
using Microsoft.Extensions.Hosting;
|
|||
|
|
|||
|
namespace BTCPayServer.PayoutProcessors;
|
|||
|
|
|||
|
public interface IPayoutProcessorFactory
|
|||
|
{
|
|||
|
public string Processor { get;}
|
|||
|
public string FriendlyName { get;}
|
|||
|
public string ConfigureLink(string storeId, PaymentMethodId paymentMethodId, HttpRequest request);
|
|||
|
public IEnumerable<PaymentMethodId> GetSupportedPaymentMethods();
|
|||
|
public Task<IHostedService> ConstructProcessor(PayoutProcessorData settings);
|
|||
|
}
|