From a86b71899ec52c44ddc6c3018e8cc5e9d7ff4d62 Mon Sep 17 00:00:00 2001 From: Andrew Rabert Date: Thu, 27 Dec 2018 18:27:57 -0500 Subject: Add GPL modules --- MediaBrowser.Model/Providers/RemoteImageInfo.cs | 71 +++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 MediaBrowser.Model/Providers/RemoteImageInfo.cs (limited to 'MediaBrowser.Model/Providers/RemoteImageInfo.cs') diff --git a/MediaBrowser.Model/Providers/RemoteImageInfo.cs b/MediaBrowser.Model/Providers/RemoteImageInfo.cs new file mode 100644 index 000000000..6db7f77bd --- /dev/null +++ b/MediaBrowser.Model/Providers/RemoteImageInfo.cs @@ -0,0 +1,71 @@ +using MediaBrowser.Model.Dto; +using MediaBrowser.Model.Entities; + +namespace MediaBrowser.Model.Providers +{ + /// + /// Class RemoteImageInfo + /// + public class RemoteImageInfo + { + /// + /// Gets or sets the name of the provider. + /// + /// The name of the provider. + public string ProviderName { get; set; } + + /// + /// Gets or sets the URL. + /// + /// The URL. + public string Url { get; set; } + + /// + /// Gets a url used for previewing a smaller version + /// + public string ThumbnailUrl { get; set; } + + /// + /// Gets or sets the height. + /// + /// The height. + public int? Height { get; set; } + + /// + /// Gets or sets the width. + /// + /// The width. + public int? Width { get; set; } + + /// + /// Gets or sets the community rating. + /// + /// The community rating. + public double? CommunityRating { get; set; } + + /// + /// Gets or sets the vote count. + /// + /// The vote count. + public int? VoteCount { get; set; } + + /// + /// Gets or sets the language. + /// + /// The language. + public string Language { get; set; } + + /// + /// Gets or sets the type. + /// + /// The type. + public ImageType Type { get; set; } + + /// + /// Gets or sets the type of the rating. + /// + /// The type of the rating. + public RatingType RatingType { get; set; } + } + +} -- cgit v1.2.3