using System; namespace iiie.CacheControl.DBO { /// /// Basic fields for data to be cached /// [Serializable] public class CacheDbo { /// /// The content type of the data /// public string ContentType { get; set; } /// /// The data itself /// public byte[] Content { get; set; } /// /// The e tag to identify cache /// public string ETag { get; set; } /// /// The date to data was first cached /// public DateTime Date { get; set; } } }