mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
27 lines
510 B
C#
27 lines
510 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Data
|
|
{
|
|
public class InvoiceEventData
|
|
{
|
|
public string InvoiceDataId
|
|
{
|
|
get; set;
|
|
}
|
|
public InvoiceData InvoiceData
|
|
{
|
|
get; set;
|
|
}
|
|
public string UniqueId { get; set; }
|
|
public DateTimeOffset Timestamp
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public string Message { get; set; }
|
|
}
|
|
}
|