mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
15 lines
381 B
C#
15 lines
381 B
C#
namespace BTCPayServer.Events
|
|
{
|
|
public class InvoiceStopWatchedEvent
|
|
{
|
|
public InvoiceStopWatchedEvent(string invoiceId)
|
|
{
|
|
this.InvoiceId = invoiceId;
|
|
}
|
|
public string InvoiceId { get; set; }
|
|
public override string ToString()
|
|
{
|
|
return $"Invoice {InvoiceId} is not monitored anymore.";
|
|
}
|
|
}
|
|
}
|