mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 05:54:26 +01:00
11 lines
332 B
C#
11 lines
332 B
C#
using BTCPayServer.Data.Subscriptions;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace BTCPayServer.Views.UIStoreMembership.Components.SubscriberStatus;
|
|
|
|
public class SubscriberStatus : ViewComponent
|
|
{
|
|
public IViewComponentResult Invoke(SubscriberData subscriber, bool canSuspend = false)
|
|
=> View((canSuspend, subscriber));
|
|
}
|