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

12 lines
290 B
C#

#nullable enable
using BTCPayServer.Data;
namespace BTCPayServer.Events;
public class AppUpdatedEvent(AppData app, string? detail = null) : AppEvent(app, detail ?? app.AppType)
{
protected override string ToString()
{
return $"{base.ToString()} has been updated";
}
}