您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }