mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 06:21:44 +01:00
11 lines
368 B
C#
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; }
|
|
}
|