2019-09-30 10:32:43 +02:00
|
|
|
using System;
|
2024-10-04 16:58:13 +09:00
|
|
|
using BTCPayServer.Payments;
|
2019-09-30 10:32:43 +02:00
|
|
|
|
2019-10-02 22:41:53 -05:00
|
|
|
namespace BTCPayServer.Services.Altcoins.Monero.UI
|
2019-09-30 10:32:43 +02:00
|
|
|
{
|
|
|
|
public class MoneroPaymentViewModel
|
|
|
|
{
|
2024-10-04 16:58:13 +09:00
|
|
|
public PaymentMethodId PaymentMethodId { get; set; }
|
2019-09-30 10:32:43 +02: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; }
|
2019-09-30 10:32:43 +02:00
|
|
|
}
|
|
|
|
}
|