2
0

RemoteImageInfo.cs 1.9 KB

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