Added SQLite status storage
[pithos-ms-client] / trunk / Pithos.Interfaces / IPithosSettings.cs
index e421700..6160910 100644 (file)
@@ -12,6 +12,27 @@ namespace Pithos.Interfaces
         string UserName { get; set; }
         string ApiKey { get; set; }
 
+        AccountsCollection Accounts { get; set; }
+
+
+       
+
+        string ProxyServer { get; set; }
+        
+
+        string ProxyPort { get; set; }
+        
+
+        string ProxyUsername { get; set; }
+
+
+        string ProxyPassword { get; set; }
+        
+
+        bool ProxyAuthentication{ get; set; }
+
+        bool ExtensionsActivated { get; set; }
+
         void Save();
         void Reload();
     }