mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 06:35:13 +01:00
13 lines
282 B
C#
13 lines
282 B
C#
using BTCPayServer.Payments;
|
|
|
|
namespace BTCPayServer.Events
|
|
{
|
|
public class NewBlockEvent
|
|
{
|
|
public PaymentMethodId PaymentMethodId { get; set; }
|
|
public override string ToString()
|
|
{
|
|
return $"{PaymentMethodId}: New block";
|
|
}
|
|
}
|
|
}
|