Files
btcpayserver/BTCPayServer/Services/Altcoins/Monero/UI/MoneroPaymentViewModel.cs
2019-10-02 22:41:53 -05:00

16 lines
468 B
C#

using System;
namespace BTCPayServer.Services.Altcoins.Monero.UI
{
public class MoneroPaymentViewModel
{
public string Crypto { 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; }
}
}