Large changes to accomodate multiple users
[pithos-ms-client] / trunk / Pithos.Network / AccountInfo.cs
diff --git a/trunk/Pithos.Network/AccountInfo.cs b/trunk/Pithos.Network/AccountInfo.cs
new file mode 100644 (file)
index 0000000..ced7595
--- /dev/null
@@ -0,0 +1,22 @@
+using System;
+
+namespace Pithos.Network
+{
+    public class AccountInfo
+    {
+        public string UserName { get; set; }
+        public string Token { get; set; }
+        public Uri StorageUri { get; set; }
+        
+        private string _accountPath;
+        public string AccountPath
+        {
+            get { return _accountPath; }
+            set { _accountPath = value.ToLower(); }
+        }
+
+        public int BlockSize { get; set; }
+
+        public string BlockHash { get; set; }
+    }
+}