btcpayserver/BTCPayServer/Events/InvoiceNeedUpdateEvent.cs
2021-11-05 00:09:38 +09:00

21 lines
481 B
C#

using System;
namespace BTCPayServer.Events
{
public class InvoiceNeedUpdateEvent
{
public InvoiceNeedUpdateEvent(string invoiceId)
{
if (invoiceId == null)
throw new ArgumentNullException(nameof(invoiceId));
InvoiceId = invoiceId;
}
public string InvoiceId { get; set; }
public override string ToString()
{
return $"Invoice {InvoiceId} needs update";
}
}
}