mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
9a24e4ade1
* 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>
15 lines
335 B
C#
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";
|
|
}
|
|
}
|
|
}
|