fix unnecessary config reload on save

This commit is contained in:
Stanley Dimant
2024-12-18 11:38:42 +01:00
parent 4650893599
commit 6d1cfed0ba
3 changed files with 7 additions and 0 deletions

View File

@@ -8,4 +8,5 @@ public interface IConfigService<out T> : IDisposable where T : IMareConfiguratio
string ConfigurationName { get; }
string ConfigurationPath { get; }
public event EventHandler? ConfigSave;
void UpdateLastWriteTime();
}