IHasScreenshots.cs 770 B

1234567891011121314151617181920212223
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Controller.Entities
  3. {
  4. /// <summary>
  5. /// Interface IHasScreenshots
  6. /// </summary>
  7. public interface IHasScreenshots
  8. {
  9. /// <summary>
  10. /// Gets or sets the screenshot image paths.
  11. /// </summary>
  12. /// <value>The screenshot image paths.</value>
  13. List<string> ScreenshotImagePaths { get; set; }
  14. /// <summary>
  15. /// Determines whether [contains image with source URL] [the specified URL].
  16. /// </summary>
  17. /// <param name="url">The URL.</param>
  18. /// <returns><c>true</c> if [contains image with source URL] [the specified URL]; otherwise, <c>false</c>.</returns>
  19. bool ContainsImageWithSourceUrl(string url);
  20. }
  21. }