mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 15:17:23 +01:00
11 lines
332 B
C#
11 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;
|
|
}
|