mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 19:17:22 +01:00
12 lines
364 B
C#
12 lines
364 B
C#
using MareSynchronos.MareConfiguration.Configurations;
|
|
|
|
namespace MareSynchronos.MareConfiguration;
|
|
|
|
public interface IConfigService<out T> : IDisposable where T : IMareConfiguration
|
|
{
|
|
T Current { get; }
|
|
string ConfigurationName { get; }
|
|
string ConfigurationPath { get; }
|
|
public event EventHandler? ConfigSave;
|
|
void UpdateLastWriteTime();
|
|
}
|