using System.Collections.Generic; namespace MediaBrowser.Controller.Entities { /// /// Interface IHasScreenshots /// public interface IHasScreenshots { /// /// Gets or sets the screenshot image paths. /// /// The screenshot image paths. List ScreenshotImagePaths { get; set; } /// /// Determines whether [contains image with source URL] [the specified URL]. /// /// The URL. /// true if [contains image with source URL] [the specified URL]; otherwise, false. bool ContainsImageWithSourceUrl(string url); } }