mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-25 07:07:31 +01:00
11 lines
219 B
C#
11 lines
219 B
C#
namespace BTCPayServer.Events
|
|
{
|
|
public class NewBlockEvent:NBXplorer.Models.NewBlockEvent
|
|
{
|
|
public override string ToString()
|
|
{
|
|
return $"{CryptoCode}: New block";
|
|
}
|
|
}
|
|
}
|
|
|