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; }
        /// 
        /// Validates the screenshots.
        /// 
        void ValidateScreenshots();
    }
}