btcpayserver/BTCPayServer/Services/Altcoins/Monero/UI/MoneroPaymentViewModel.cs

18 lines
560 B
C#
Raw Normal View History

2019-09-30 10:32:43 +02:00
using System;
using BTCPayServer.Payments;
2019-09-30 10:32:43 +02:00
namespace BTCPayServer.Services.Altcoins.Monero.UI
2019-09-30 10:32:43 +02:00
{
public class MoneroPaymentViewModel
{
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; }
public string Currency { get; set; }
2019-09-30 10:32:43 +02:00
}
}