btcpayserver/BTCPayServer/Models/CustodianAccountViewModels/DepositPrepareViewModel.cs
Wouter Samaey de92677b69
Custodian Account Deposit UI (#4024)
Co-authored-by: d11n <mail@dennisreimann.de>
2022-08-09 20:03:55 +02:00

11 lines
368 B
C#

namespace BTCPayServer.Models.CustodianAccountViewModels;
public class DepositPrepareViewModel
{
public string PaymentMethod { get; set; }
public string Address { get; set; }
public string Link { get; set; }
public string CryptoImageUrl { get; set; }
public string ErrorMessage { get; set; }
public string CreateTransactionUrl { get; set; }
}