aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IHasScreenshots.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-02-07 15:30:41 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-02-07 15:30:41 -0500
commit76658f07977a5857c752dc1266b66f881b454f48 (patch)
tree34a55486343c34fedc03099891a2e2eb8690dc02 /MediaBrowser.Controller/Entities/IHasScreenshots.cs
parent5e2a2a02ef73517f11ef9c7a513ac53ed0f9b2e8 (diff)
create images list object
Diffstat (limited to 'MediaBrowser.Controller/Entities/IHasScreenshots.cs')
-rw-r--r--MediaBrowser.Controller/Entities/IHasScreenshots.cs8
1 files changed, 1 insertions, 7 deletions
diff --git a/MediaBrowser.Controller/Entities/IHasScreenshots.cs b/MediaBrowser.Controller/Entities/IHasScreenshots.cs
index 341d6403f2..2fd402bc2b 100644
--- a/MediaBrowser.Controller/Entities/IHasScreenshots.cs
+++ b/MediaBrowser.Controller/Entities/IHasScreenshots.cs
@@ -1,5 +1,4 @@
-using System.Collections.Generic;
-
+
namespace MediaBrowser.Controller.Entities
{
/// <summary>
@@ -7,10 +6,5 @@ namespace MediaBrowser.Controller.Entities
/// </summary>
public interface IHasScreenshots
{
- /// <summary>
- /// Gets or sets the screenshot image paths.
- /// </summary>
- /// <value>The screenshot image paths.</value>
- List<string> ScreenshotImagePaths { get; set; }
}
}