mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
13 lines
408 B
C#
13 lines
408 B
C#
|
using BTCPayServer.Models;
|
||
|
using BTCPayServer.Services.Invoices;
|
||
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
||
|
namespace BTCPayServer.Payments
|
||
|
{
|
||
|
public interface IPaymentMethodBitpayAPIExtension
|
||
|
{
|
||
|
PaymentMethodId PaymentMethodId { get; }
|
||
|
void PopulateCryptoInfo(BTCPayServer.Services.Invoices.InvoiceCryptoInfo cryptoInfo, InvoiceResponse dto, PaymentPrompt prompt, IUrlHelper urlHelper);
|
||
|
}
|
||
|
}
|