aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Providers/RemoteImageInfo.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-10-30 17:33:27 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-10-30 17:33:27 -0400
commit524150331c1811e8ced5ff8444e0d0197bc6419a (patch)
treede08c6d40aa77e2c0ddbc0e8246ab85d3d0b9c90 /MediaBrowser.Model/Providers/RemoteImageInfo.cs
parent2f99b2e1e60f7a36c7f9c420c07fb608bb231fbf (diff)
beginning manual image providers
Diffstat (limited to 'MediaBrowser.Model/Providers/RemoteImageInfo.cs')
-rw-r--r--MediaBrowser.Model/Providers/RemoteImageInfo.cs51
1 files changed, 51 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Providers/RemoteImageInfo.cs b/MediaBrowser.Model/Providers/RemoteImageInfo.cs
new file mode 100644
index 000000000..bb2a3cb69
--- /dev/null
+++ b/MediaBrowser.Model/Providers/RemoteImageInfo.cs
@@ -0,0 +1,51 @@
+
+namespace MediaBrowser.Model.Providers
+{
+ /// <summary>
+ /// Class RemoteImageInfo
+ /// </summary>
+ public class RemoteImageInfo
+ {
+ /// <summary>
+ /// Gets or sets the name of the provider.
+ /// </summary>
+ /// <value>The name of the provider.</value>
+ public string ProviderName { get; set; }
+
+ /// <summary>
+ /// Gets or sets the URL.
+ /// </summary>
+ /// <value>The URL.</value>
+ public string Url { get; set; }
+
+ /// <summary>
+ /// Gets or sets the height.
+ /// </summary>
+ /// <value>The height.</value>
+ public int? Height { get; set; }
+
+ /// <summary>
+ /// Gets or sets the width.
+ /// </summary>
+ /// <value>The width.</value>
+ public int? Width { get; set; }
+
+ /// <summary>
+ /// Gets or sets the community rating.
+ /// </summary>
+ /// <value>The community rating.</value>
+ public double? CommunityRating { get; set; }
+
+ /// <summary>
+ /// Gets or sets the vote count.
+ /// </summary>
+ /// <value>The vote count.</value>
+ public int? VoteCount { get; set; }
+
+ /// <summary>
+ /// Gets or sets the language.
+ /// </summary>
+ /// <value>The language.</value>
+ public string Language { get; set; }
+ }
+}