mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-05 23:24:27 +01:00
18 lines
560 B
C#
18 lines
560 B
C#
using System;
|
|
using BTCPayServer.Payments;
|
|
|
|
namespace BTCPayServer.Services.Altcoins.Monero.UI
|
|
{
|
|
public class MoneroPaymentViewModel
|
|
{
|
|
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; }
|
|
}
|
|
}
|