Statistics
| Branch: | Revision:

root / trunk / Pithos.Network / ContainerInfo.cs @ cfed7823

History | View | Annotate | Download (345 Bytes)

1
namespace Pithos.Network
2
{
3
    public class ContainerInfo
4
    {
5
        public string Name { get; set; }
6
        public long Count { get; set; }
7
        public long Bytes { get; set; }
8
        public string BlockHash { get; set; }
9
        public int BlockSize { get; set; }
10

    
11
        public static ContainerInfo Empty=new ContainerInfo();
12
    }
13
}