mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
16 lines
411 B
C#
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; }
|
|
|
|
}
|
|
}
|