Files
btcpayserver/BTCPayServer/Plugins/Subscriptions/Views/Components/Contact/Contact.cs
2025-10-28 15:33:23 +09:00

10 lines
243 B
C#

using Microsoft.AspNetCore.Mvc;
namespace BTCPayServer.Views.UIStoreMembership.Components.Contact;
public class Contact : ViewComponent
{
public IViewComponentResult Invoke(string type, string value)
=> View((type, value));
}