mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
21 lines
503 B
C#
21 lines
503 B
C#
using BTCPayServer.Services.Invoices;
|
|
|
|
namespace BTCPayServer.Events
|
|
{
|
|
public class InvoiceDataChangedEvent : IHasInvoiceId
|
|
{
|
|
public InvoiceDataChangedEvent(InvoiceEntity invoice)
|
|
{
|
|
InvoiceId = invoice.Id;
|
|
State = invoice.GetInvoiceState();
|
|
}
|
|
public string InvoiceId { get; }
|
|
public InvoiceState State { get; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"Invoice status is {State}";
|
|
}
|
|
}
|
|
}
|