aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IHasScreenshots.cs
blob: 341d6403f22639731299cb536d243a0ea73433ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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; }
    }
}