mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
10 lines
289 B
C#
10 lines
289 B
C#
namespace BTCPayServer.Payments
|
|
{
|
|
/// <summary>
|
|
/// <see cref="ModifyCheckoutModel"/> will always run when showing the checkout page
|
|
/// </summary>
|
|
public interface IGlobalCheckoutModelExtension
|
|
{
|
|
void ModifyCheckoutModel(CheckoutModelContext context);
|
|
}
|
|
}
|