mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 05:54:26 +01:00
* Use Blazor for the Vault code * Put elements in different file * Controller abstraction * Break into VaultElement
11 lines
272 B
C#
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; }
|
|
}
|
|
}
|