2
0

RemoteImageInfo.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. #nullable disable
  2. using MediaBrowser.Model.Dto;
  3. using MediaBrowser.Model.Entities;
  4. namespace MediaBrowser.Model.Providers
  5. {
  6. /// <summary>
  7. /// Class RemoteImageInfo.
  8. /// </summary>
  9. public class RemoteImageInfo
  10. {
  11. /// <summary>
  12. /// Gets or sets the name of the provider.
  13. /// </summary>
  14. /// <value>The name of the provider.</value>
  15. public string ProviderName { get; set; }
  16. /// <summary>
  17. /// Gets or sets the URL.
  18. /// </summary>
  19. /// <value>The URL.</value>
  20. public string Url { get; set; }
  21. /// <summary>
  22. /// Gets or sets a url used for previewing a smaller version.
  23. /// </summary>
  24. public string ThumbnailUrl { get; set; }
  25. /// <summary>
  26. /// Gets or sets the height.
  27. /// </summary>
  28. /// <value>The height.</value>
  29. public int? Height { get; set; }
  30. /// <summary>
  31. /// Gets or sets the width.
  32. /// </summary>
  33. /// <value>The width.</value>
  34. public int? Width { get; set; }
  35. /// <summary>
  36. /// Gets or sets the community rating.
  37. /// </summary>
  38. /// <value>The community rating.</value>
  39. public double? CommunityRating { get; set; }
  40. /// <summary>
  41. /// Gets or sets the vote count.
  42. /// </summary>
  43. /// <value>The vote count.</value>
  44. public int? VoteCount { get; set; }
  45. /// <summary>
  46. /// Gets or sets the language.
  47. /// </summary>
  48. /// <value>The language.</value>
  49. public string Language { get; set; }
  50. /// <summary>
  51. /// Gets or sets the type.
  52. /// </summary>
  53. /// <value>The type.</value>
  54. public ImageType Type { get; set; }
  55. /// <summary>
  56. /// Gets or sets the type of the rating.
  57. /// </summary>
  58. /// <value>The type of the rating.</value>
  59. public RatingType RatingType { get; set; }
  60. }
  61. }