2013-12-05 16:50:21 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interface IHasScreenshots
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IHasScreenshots
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the screenshot image paths.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The screenshot image paths.</value>
|
|
|
|
|
List<string> ScreenshotImagePaths { get; set; }
|
2013-12-06 03:39:44 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Validates the screenshots.
|
|
|
|
|
/// </summary>
|
|
|
|
|
void ValidateScreenshots();
|
2013-12-05 16:50:21 +00:00
|
|
|
|
}
|
|
|
|
|
}
|