namespace AquaMai.Config.Interfaces; public interface IConfigView { public void SetValue(string path, object value); public T GetValueOrDefault(string path, T defaultValue = default); public bool TryGetValue(string path, out T resultValue); public bool Remove(string path); public string ToToml(); public IConfigView Clone(); }