Beispiel #1
0
 public LPConfig(string path)
 {
     if (File.Exists(path))
     {
         _config = JsonConfigPersister.LoadConfig(path);
     }
     else
     {
         _config = new JObject();
     }
 }
Beispiel #2
0
 public void SaveSettings(string filePath)
 {
     JsonConfigPersister.SaveConfig(_config, filePath);
 }