mirror of
https://github.com/WinDurango/WinDurango.UI.git
synced 2026-01-31 00:55:24 +01:00
11 lines
219 B
C#
11 lines
219 B
C#
namespace WinDurango.UI.Settings
|
|
{
|
|
public interface IConfig
|
|
{
|
|
void Reset();
|
|
void Backup();
|
|
void Generate();
|
|
void Save();
|
|
void Set(string setting, object value);
|
|
}
|
|
} |