Changed the retry function in PithosClient to use the TPL
[pithos-ms-client] / trunk / Pithos.Core / IStatusService.cs
index 3cb324e..636ce9b 100644 (file)
@@ -17,11 +17,16 @@ namespace Pithos.Core
     /// TODO: Update summary.
     /// </summary>
     [ServiceContract(Namespace = "http://PITHOS.Client.Status")]
-
     public interface IStatusService
     {
         [OperationContract]
         FileOverlayStatus GetStatus(string filePath);
     }
 
+    [ServiceContract(Namespace = "http://PITHOS.Client.Settings")]
+    public interface ISettingsService
+    {
+        [OperationContract]
+        PithosSettingsData GetSettings();
+    }
 }