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

18 lines
517 B
C#

using BTCPayServer.Data;
using BTCPayServer.Data.Subscriptions;
using BTCPayServer.Models;
namespace BTCPayServer.Views.UIStoreMembership;
public class PlanCheckoutViewModel
{
public StoreBrandingViewModel StoreBranding { get; set; }
public string Title { get; set; }
public string StoreName { get; set; }
public string Email { get; set; }
public string Id { get; set; }
public PlanData Data { get; set; }
public bool IsPrefilled { get; set; }
public bool IsTrial { get; set; }
}