2022-02-14 16:04:34 +08:00
|
|
|
using System;
|
2024-10-04 16:58:13 +09:00
|
|
|
using BTCPayServer.Payments;
|
2022-02-14 16:04:34 +08:00
|
|
|
|
|
|
|
namespace BTCPayServer.Services.Altcoins.Zcash.UI
|
|
|
|
{
|
|
|
|
public class ZcashPaymentViewModel
|
|
|
|
{
|
2024-10-04 16:58:13 +09:00
|
|
|
public PaymentMethodId PaymentMethodId { get; set; }
|
2022-02-14 16:04:34 +08:00
|
|
|
public string Confirmations { get; set; }
|
|
|
|
public string DepositAddress { get; set; }
|
|
|
|
public string Amount { get; set; }
|
|
|
|
public string TransactionId { get; set; }
|
|
|
|
public DateTimeOffset ReceivedTime { get; set; }
|
|
|
|
public string TransactionLink { get; set; }
|
2024-10-04 16:58:13 +09:00
|
|
|
public string Currency { get; set; }
|
2022-02-14 16:04:34 +08:00
|
|
|
}
|
|
|
|
}
|