mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
16 lines
397 B
C#
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.";
|
|
}
|
|
}
|
|
}
|