nopcommerce/Components/PaymentBtcPayViewComponent.cs
2023-11-24 15:50:23 +00:00

14 lines
368 B
C#

using Microsoft.AspNetCore.Mvc;
using Nop.Web.Framework.Components;
namespace Nop.Plugin.Payments.BTCPayServer.Components
{
public class PaymentBtcPayViewComponent : NopViewComponent
{
public IViewComponentResult Invoke()
{
return View("~/Plugins/Payments.BTCPayServer/Views/PaymentInfo.cshtml");
}
}
}