aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IHasScreenshots.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Entities/IHasScreenshots.cs')
-rw-r--r--MediaBrowser.Controller/Entities/IHasScreenshots.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Entities/IHasScreenshots.cs b/MediaBrowser.Controller/Entities/IHasScreenshots.cs
index 2276c707a..70d154a95 100644
--- a/MediaBrowser.Controller/Entities/IHasScreenshots.cs
+++ b/MediaBrowser.Controller/Entities/IHasScreenshots.cs
@@ -14,8 +14,10 @@ namespace MediaBrowser.Controller.Entities
List<string> ScreenshotImagePaths { get; set; }
/// <summary>
- /// Validates the screenshots.
+ /// Determines whether [contains image with source URL] [the specified URL].
/// </summary>
- void ValidateScreenshots();
+ /// <param name="url">The URL.</param>
+ /// <returns><c>true</c> if [contains image with source URL] [the specified URL]; otherwise, <c>false</c>.</returns>
+ bool ContainsImageWithSourceUrl(string url);
}
}