mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
14 lines
255 B
C#
14 lines
255 B
C#
using System;
|
|
|
|
namespace BTCPayServer.Events
|
|
{
|
|
public class WalletChangedEvent
|
|
{
|
|
public WalletId WalletId { get; set; }
|
|
public override string ToString()
|
|
{
|
|
return $"Wallet {WalletId} changed";
|
|
}
|
|
}
|
|
}
|