Files
btcpayserver/BTCPayServer/Models/SetupBoltcardViewModel.cs
Nicolas Dorier 2f26979ed7 Refactor vault (#6678)
* Use Blazor for the Vault code

* Put elements in different file

* Controller abstraction

* Break into VaultElement
2025-04-21 17:09:46 +09:00

11 lines
272 B
C#

namespace BTCPayServer.Models
{
public class SetupBoltcardViewModel
{
public string ReturnUrl { get; set; }
public string BoltcardUrl { get; set; }
public bool NewCard { get; set; }
public string PullPaymentId { get; set; }
}
}