btcpayserver/BTCPayServer/Events/NewBlockEvent.cs
2024-10-07 09:37:56 +09:00

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";
}
}
}