ItemImageInfo.cs 813 B

1234567891011121314151617181920212223242526272829303132
  1. using MediaBrowser.Model.Entities;
  2. using System;
  3. namespace MediaBrowser.Controller.Entities
  4. {
  5. public class ItemImageInfo
  6. {
  7. /// <summary>
  8. /// Gets or sets the path.
  9. /// </summary>
  10. /// <value>The path.</value>
  11. public string Path { get; set; }
  12. /// <summary>
  13. /// Gets or sets the length.
  14. /// </summary>
  15. /// <value>The length.</value>
  16. public long Length { get; set; }
  17. /// <summary>
  18. /// Gets or sets the type.
  19. /// </summary>
  20. /// <value>The type.</value>
  21. public ImageType Type { get; set; }
  22. /// <summary>
  23. /// Gets or sets the date modified.
  24. /// </summary>
  25. /// <value>The date modified.</value>
  26. public DateTime DateModified { get; set; }
  27. }
  28. }