mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-12 10:30:47 +01:00
17 lines
558 B
C#
17 lines
558 B
C#
using System;
|
|
using BTCPayServer.Payments;
|
|
|
|
namespace BTCPayServer.Services.Altcoins.Zcash.UI
|
|
{
|
|
public class ZcashPaymentViewModel
|
|
{
|
|
public PaymentMethodId PaymentMethodId { get; set; }
|
|
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; }
|
|
public string Currency { get; set; }
|
|
}
|
|
}
|