ImageInfo.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using MediaBrowser.Model.Entities;
  2. namespace MediaBrowser.Model.Dto
  3. {
  4. /// <summary>
  5. /// Class ImageInfo
  6. /// </summary>
  7. public class ImageInfo
  8. {
  9. /// <summary>
  10. /// Gets or sets the type of the image.
  11. /// </summary>
  12. /// <value>The type of the image.</value>
  13. public ImageType ImageType { get; set; }
  14. /// <summary>
  15. /// Gets or sets the index of the image.
  16. /// </summary>
  17. /// <value>The index of the image.</value>
  18. public int? ImageIndex { get; set; }
  19. /// <summary>
  20. /// The image tag
  21. /// </summary>
  22. public string ImageTag;
  23. /// <summary>
  24. /// Gets or sets the path.
  25. /// </summary>
  26. /// <value>The path.</value>
  27. public string Path { get; set; }
  28. /// <summary>
  29. /// Gets or sets the height.
  30. /// </summary>
  31. /// <value>The height.</value>
  32. public int? Height { get; set; }
  33. /// <summary>
  34. /// Gets or sets the width.
  35. /// </summary>
  36. /// <value>The width.</value>
  37. public int? Width { get; set; }
  38. /// <summary>
  39. /// Gets or sets the size.
  40. /// </summary>
  41. /// <value>The size.</value>
  42. public long Size { get; set; }
  43. }
  44. }