jellyfin-server/MediaBrowser.Controller/Entities/IHasScreenshots.cs

22 lines
535 B
C#
Raw Normal View History

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();
}
}