Added Polling interval property and setting
[pithos-ms-client] / trunk / Pithos.Interfaces / PithosSettingsData.cs
index da44083..f94a406 100644 (file)
@@ -64,6 +64,7 @@ namespace Pithos.Interfaces
         public string ProxyPassword { get; set; }
         public bool ProxyAuthentication { get; set; }
         public bool ExtensionsActivated { get; set; }
+        public int PollingInterval { get; set; }
 
         public PithosSettingsData()
         {
@@ -89,6 +90,7 @@ namespace Pithos.Interfaces
             ProxyPassword = other.ProxyPassword;
             ProxyAuthentication = other.ProxyAuthentication;
             ExtensionsActivated = other.ExtensionsActivated;
+            PollingInterval = other.PollingInterval;
         }
 
         public virtual void Save()