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 SearchTerms { get; } = new HashSet(); public bool Accounted { get; set; } public CryptoPaymentData Details { get; set; } } }