RemoteImageInfo.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. 
  2. namespace MediaBrowser.Model.Providers
  3. {
  4. /// <summary>
  5. /// Class RemoteImageInfo
  6. /// </summary>
  7. public class RemoteImageInfo
  8. {
  9. /// <summary>
  10. /// Gets or sets the name of the provider.
  11. /// </summary>
  12. /// <value>The name of the provider.</value>
  13. public string ProviderName { get; set; }
  14. /// <summary>
  15. /// Gets or sets the URL.
  16. /// </summary>
  17. /// <value>The URL.</value>
  18. public string Url { get; set; }
  19. /// <summary>
  20. /// Gets or sets the height.
  21. /// </summary>
  22. /// <value>The height.</value>
  23. public int? Height { get; set; }
  24. /// <summary>
  25. /// Gets or sets the width.
  26. /// </summary>
  27. /// <value>The width.</value>
  28. public int? Width { get; set; }
  29. /// <summary>
  30. /// Gets or sets the community rating.
  31. /// </summary>
  32. /// <value>The community rating.</value>
  33. public double? CommunityRating { get; set; }
  34. /// <summary>
  35. /// Gets or sets the vote count.
  36. /// </summary>
  37. /// <value>The vote count.</value>
  38. public int? VoteCount { get; set; }
  39. /// <summary>
  40. /// Gets or sets the language.
  41. /// </summary>
  42. /// <value>The language.</value>
  43. public string Language { get; set; }
  44. }
  45. }