mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-13 19:37:37 +01:00
9 lines
243 B
C#
9 lines
243 B
C#
namespace BTCPayServer.Events;
|
|
|
|
public class UserStoreRemovedEvent(string storeId, string userId) : UserStoreEvent(storeId, userId)
|
|
{
|
|
protected override string ToString()
|
|
{
|
|
return $"{base.ToString()} has been removed";
|
|
}
|
|
}
|