mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 06:21:44 +01:00
11 lines
233 B
C#
11 lines
233 B
C#
namespace BTCPayServer.Events
|
|
{
|
|
public class NewBlockEvent
|
|
{
|
|
public string CryptoCode { get; set; }
|
|
public override string ToString()
|
|
{
|
|
return $"{CryptoCode}: New block";
|
|
}
|
|
}
|
|
}
|