btcpayserver/BTCPayServer/Events/InvoiceStopWatchedEvent.cs

16 lines
397 B
C#

namespace BTCPayServer.Events
{
public class InvoiceStopWatchedEvent : IHasInvoiceId
{
public InvoiceStopWatchedEvent(string invoiceId)
{
this.InvoiceId = invoiceId;
}
public string InvoiceId { get; set; }
public override string ToString()
{
return $"Invoice {InvoiceId} is not monitored anymore.";
}
}
}