btcpayserver/BTCPayServer/Events/StoreRemovedEvent.cs
2024-09-10 17:33:25 +02:00

12 lines
285 B
C#

#nullable enable
using BTCPayServer.Data;
namespace BTCPayServer.Events;
public class StoreRemovedEvent(StoreData store, string? detail = null) : StoreEvent(store, detail)
{
protected override string ToString()
{
return $"{base.ToString()} has been removed";
}
}