btcpayserver/BTCPayServer/Events/UserStoreRemovedEvent.cs
2024-07-10 18:08:37 +02:00

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