ImageInfo.cs 1.5 KB

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