mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 05:54:26 +01:00
18 lines
517 B
C#
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; }
|
|
}
|