mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-10 17:26:05 +01:00
11 lines
289 B
C#
11 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);
|
||
|
}
|
||
|
}
|