Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (723 Bytes)

1
using System;
2
using System.Collections.Generic;
3

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

    
15
        public DateTime Last_Modified { get; set; }
16

    
17
        public Dictionary<string, string> Tags { get; set; }
18
        public Dictionary<string, string> Policies { get; set; }
19

    
20
        public static ContainerInfo Empty=new ContainerInfo();
21

    
22
        public ContainerInfo()
23
        {
24
            Tags = new Dictionary<string, string>();
25
        }
26
    }
27
}