mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-26 02:14:26 +01:00
16 lines
272 B
C#
16 lines
272 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Events
|
|
{
|
|
public class NewBlockEvent
|
|
{
|
|
public override string ToString()
|
|
{
|
|
return "New block";
|
|
}
|
|
}
|
|
}
|