mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +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";
|
|
}
|
|
}
|