Statistics
| Branch: | Revision:

root / trunk / Pithos.Network / ContainerInfo.cs @ 42800be8

History | View | Annotate | Download (457 Bytes)

1
using System;
2

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

    
14
        public DateTime Last_Modified { get; set; }
15

    
16
        public static ContainerInfo Empty=new ContainerInfo();
17
    }
18
}