RemoteImageInfo.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 or sets the height.
  22. /// </summary>
  23. /// <value>The height.</value>
  24. public int? Height { get; set; }
  25. /// <summary>
  26. /// Gets or sets the width.
  27. /// </summary>
  28. /// <value>The width.</value>
  29. public int? Width { get; set; }
  30. /// <summary>
  31. /// Gets or sets the community rating.
  32. /// </summary>
  33. /// <value>The community rating.</value>
  34. public double? CommunityRating { get; set; }
  35. /// <summary>
  36. /// Gets or sets the vote count.
  37. /// </summary>
  38. /// <value>The vote count.</value>
  39. public int? VoteCount { get; set; }
  40. /// <summary>
  41. /// Gets or sets the language.
  42. /// </summary>
  43. /// <value>The language.</value>
  44. public string Language { get; set; }
  45. /// <summary>
  46. /// Gets or sets the type.
  47. /// </summary>
  48. /// <value>The type.</value>
  49. public ImageType Type { get; set; }
  50. /// <summary>
  51. /// Gets or sets the type of the rating.
  52. /// </summary>
  53. /// <value>The type of the rating.</value>
  54. public RatingType RatingType { get; set; }
  55. }
  56. }