Statistics
| Branch: | Revision:

root / trunk / Pithos.Network / AccountInfo.cs @ c53aa229

History | View | Annotate | Download (503 Bytes)

1
using System;
2

    
3
namespace Pithos.Network
4
{
5
    public class AccountInfo
6
    {
7
        public string UserName { get; set; }
8
        public string Token { get; set; }
9
        public Uri StorageUri { get; set; }
10
        
11
        private string _accountPath;
12
        public string AccountPath
13
        {
14
            get { return _accountPath; }
15
            set { _accountPath = value.ToLower(); }
16
        }
17

    
18
        public int BlockSize { get; set; }
19

    
20
        public string BlockHash { get; set; }
21
    }
22
}