mirror of
https://github.com/hykilpikonna/AquaDX.git
synced 2026-08-09 04:29:03 -05:00
13 lines
406 B
C#
13 lines
406 B
C#
namespace AquaMai.Config.Interfaces;
|
|
|
|
public interface IConfigView
|
|
{
|
|
public void SetValue(string path, object value);
|
|
public T GetValueOrDefault<T>(string path, T defaultValue = default);
|
|
public bool TryGetValue<T>(string path, out T resultValue);
|
|
public bool Remove(string path);
|
|
public bool IsSectionEnabled(string path);
|
|
public string ToToml();
|
|
public IConfigView Clone();
|
|
}
|