aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IHasImages.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Entities/IHasImages.cs')
-rw-r--r--MediaBrowser.Controller/Entities/IHasImages.cs8
1 files changed, 2 insertions, 6 deletions
diff --git a/MediaBrowser.Controller/Entities/IHasImages.cs b/MediaBrowser.Controller/Entities/IHasImages.cs
index db69df31a..6d56b1525 100644
--- a/MediaBrowser.Controller/Entities/IHasImages.cs
+++ b/MediaBrowser.Controller/Entities/IHasImages.cs
@@ -98,12 +98,6 @@ namespace MediaBrowser.Controller.Entities
Task SwapImages(ImageType type, int index1, int index2);
/// <summary>
- /// Gets the display type of the media.
- /// </summary>
- /// <value>The display type of the media.</value>
- string DisplayMediaType { get; set; }
-
- /// <summary>
/// Gets or sets the primary image path.
/// </summary>
/// <value>The primary image path.</value>
@@ -208,6 +202,8 @@ namespace MediaBrowser.Controller.Entities
double? GetDefaultPrimaryImageAspectRatio();
int? ProductionYear { get; set; }
+
+ List<string> Tags { get; set; }
}
public static class HasImagesExtensions