diff --git a/Settings.cs b/Settings.cs index 3ed7600..5443e03 100644 --- a/Settings.cs +++ b/Settings.cs @@ -61,8 +61,16 @@ public class Global _instance = this; } - public string config_path { get; set; } = ""; - public string wiki_storage_path { get; set; } = ""; + public string config_path { get; set; } = Path.Combine( + Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), + "logofclient", + "config.json"); + + public string wiki_storage_path { get; set; } = Path.Combine( + Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), + "logofclient", + "wiki"); + public List countries { get; set; } = new(); public string font_path { get; set; } = Path.Combine(AppContext.BaseDirectory, "assets", "fonts");