mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 06:47:50 +01:00
17 lines
488 B
C#
17 lines
488 B
C#
#if ALTCOINS
|
|
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; }
|
|
}
|
|
}
|
|
#endif
|