mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-13 19:37:37 +01:00
12 lines
285 B
C#
12 lines
285 B
C#
#nullable enable
|
|
using BTCPayServer.Data;
|
|
|
|
namespace BTCPayServer.Events;
|
|
|
|
public class StoreUpdatedEvent(StoreData store, string? detail = null) : StoreEvent(store, detail)
|
|
{
|
|
protected override string ToString()
|
|
{
|
|
return $"{base.ToString()} has been updated";
|
|
}
|
|
}
|