mirror of https://github.com/hykilpikonna/AquaDX
10 lines
290 B
C#
10 lines
290 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 string ToToml();
|
||
|
}
|