mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +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";
|
||
|
}
|
||
|
}
|