mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
13 lines
305 B
C#
13 lines
305 B
C#
|
#nullable enable
|
||
|
using BTCPayServer.Services.Invoices;
|
||
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
||
|
namespace BTCPayServer.Payments
|
||
|
{
|
||
|
public interface IPaymentLinkExtension
|
||
|
{
|
||
|
PaymentMethodId PaymentMethodId { get; }
|
||
|
string? GetPaymentLink(PaymentPrompt prompt, IUrlHelper? urlHelper);
|
||
|
}
|
||
|
}
|