Files
btcpayserver/BTCPayServer/Events/NewBlockEvent.cs
2017-12-17 14:17:42 +09:00

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