btcpay-plugin/Plugins/Monero/ViewModels/MoneroPaymentViewModel.cs
nicolas.dorier c24ef96fd4
Init commit
2025-01-08 18:27:19 +09:00

17 lines
558 B
C#

using System;
using BTCPayServer.Payments;
namespace BTCPayServer.Plugins.Monero.ViewModels
{
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; }
}
}