12 lines
332 B
C#
12 lines
332 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;
|
|
}
|