btcpayserver/BTCPayServer/Events/SettingsChanged.cs
Andrew Camilleri 9a24e4ade1
Store Settings feature with own table (#3851)
* Store Settings feature with own table

* fix test

* Include the store settings to StoreRepository, remove caching stuff

Co-authored-by: nicolas.dorier <nicolas.dorier@gmail.com>
2022-06-13 13:36:47 +09:00

15 lines
335 B
C#

namespace BTCPayServer.Events
{
public class SettingsChanged<T>
{
public string SettingsName { get; set; }
public T Settings { get; set; }
public string StoreId { get; set; }
public override string ToString()
{
return $"Settings {typeof(T).Name} changed";
}
}
}