btcpayserver/BTCPayServer/Payments/IGlobalCheckoutModelExtension.cs
2024-12-09 21:29:04 +09:00

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);
}
}