forked from Eauldane/SnowcloakClient
13 lines
364 B
C#
13 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();
|
|
}
|