btcpayserver/BTCPayServer/Events/InvoiceStopWatchedEvent.cs

21 lines
482 B
C#
Raw Normal View History

2018-01-14 14:06:06 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Events
{
public class InvoiceStopWatchedEvent
{
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.";
}
}
}