mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
15 lines
293 B
C#
15 lines
293 B
C#
namespace BTCPayServer.Events;
|
|
|
|
public class StoreRemovedEvent
|
|
{
|
|
public StoreRemovedEvent(string storeId)
|
|
{
|
|
StoreId = storeId;
|
|
}
|
|
public string StoreId { get; set; }
|
|
public override string ToString()
|
|
{
|
|
return $"Store {StoreId} has been removed";
|
|
}
|
|
}
|