IHasScreenshots.cs 535 B

123456789101112131415161718192021
  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. /// Validates the screenshots.
  16. /// </summary>
  17. void ValidateScreenshots();
  18. }
  19. }