using System; using System.Collections.Generic; namespace Pithos.Network { public class ContainerInfo { public string Account { get; set; } public string Name { get; set; } public long Count { get; set; } public long Bytes { get; set; } public string BlockHash { get; set; } public int BlockSize { get; set; } public DateTime Last_Modified { get; set; } public Dictionary Tags { get; set; } public Dictionary Policies { get; set; } public static ContainerInfo Empty=new ContainerInfo(); public ContainerInfo() { Tags = new Dictionary(); } } }