mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
14 lines
282 B
C#
14 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";
|
|
}
|
|
}
|
|
}
|