aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Providers/RemoteImageInfo.cs
diff options
context:
space:
mode:
authorstefan <stefan@hegedues.at>2018-09-12 19:26:21 +0200
committerstefan <stefan@hegedues.at>2018-09-12 19:26:21 +0200
commit48facb797ed912e4ea6b04b17d1ff190ac2daac4 (patch)
tree8dae77a31670a888d733484cb17dd4077d5444e8 /MediaBrowser.Model/Providers/RemoteImageInfo.cs
parentc32d8656382a0eacb301692e0084377fc433ae9b (diff)
Update to 3.5.2 and .net core 2.1
Diffstat (limited to 'MediaBrowser.Model/Providers/RemoteImageInfo.cs')
-rw-r--r--MediaBrowser.Model/Providers/RemoteImageInfo.cs71
1 files changed, 0 insertions, 71 deletions
diff --git a/MediaBrowser.Model/Providers/RemoteImageInfo.cs b/MediaBrowser.Model/Providers/RemoteImageInfo.cs
deleted file mode 100644
index 6db7f77bd..000000000
--- a/MediaBrowser.Model/Providers/RemoteImageInfo.cs
+++ /dev/null
@@ -1,71 +0,0 @@
-using MediaBrowser.Model.Dto;
-using MediaBrowser.Model.Entities;
-
-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 a url used for previewing a smaller version
- /// </summary>
- public string ThumbnailUrl { 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; }
-
- /// <summary>
- /// Gets or sets the type.
- /// </summary>
- /// <value>The type.</value>
- public ImageType Type { get; set; }
-
- /// <summary>
- /// Gets or sets the type of the rating.
- /// </summary>
- /// <value>The type of the rating.</value>
- public RatingType RatingType { get; set; }
- }
-
-}