btcpayserver/BTCPayServer/Events/InvoiceStopWatchedEvent.cs

16 lines
397 B
C#
Raw Normal View History

2018-01-14 14:06:06 +01:00
namespace BTCPayServer.Events
{
public class InvoiceStopWatchedEvent : IHasInvoiceId
2018-01-14 14:06:06 +01:00
{
2018-02-17 05:18:16 +01:00
public InvoiceStopWatchedEvent(string invoiceId)
{
this.InvoiceId = invoiceId;
}
2018-01-14 14:06:06 +01:00
public string InvoiceId { get; set; }
public override string ToString()
{
return $"Invoice {InvoiceId} is not monitored anymore.";
}
}
}