btcpayserver/BTCPayServer/Services/Invoices/PaymentCreation.cs
2024-04-04 16:31:04 +09:00

16 lines
411 B
C#

using System;
using System.Collections.Generic;
namespace BTCPayServer.Services.Invoices
{
public class PaymentCreation
{
public DateTimeOffset Date { get; set; }
public string PaymentId { get; set; }
public HashSet<string> SearchTerms { get; } = new HashSet<string>();
public bool Accounted { get; set; }
public CryptoPaymentData Details { get; set; }
}
}