You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CacheDBO.cs 686B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. namespace iiie.CacheControl.DBO
  3. {
  4. /// <summary>
  5. /// Basic fields for data to be cached
  6. /// </summary>
  7. public class CacheDbo
  8. {
  9. /// <summary>
  10. /// The content type of the data
  11. /// </summary>
  12. public string ContentType { get; set; }
  13. /// <summary>
  14. /// The data itself
  15. /// </summary>
  16. public byte[] Content { get; set; }
  17. /// <summary>
  18. /// The e tag to identify cache
  19. /// </summary>
  20. public string ETag { get; set; }
  21. /// <summary>
  22. /// The date to data was first cached
  23. /// </summary>
  24. public DateTime Date { get; set; }
  25. }
  26. }