mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 06:21:44 +01:00
13 lines
255 B
C#
13 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";
|
|
}
|
|
}
|
|
}
|