aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Providers/IImageProvider.cs
blob: 29ab323f8de43e5d9bdb3c1afe8aae47e7e86d75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using MediaBrowser.Controller.Entities;

namespace MediaBrowser.Controller.Providers
{
    /// <summary>
    /// Interface IImageProvider.
    /// </summary>
    public interface IImageProvider
    {
        /// <summary>
        /// Gets the name.
        /// </summary>
        /// <value>The name.</value>
        string Name { get; }

        /// <summary>
        /// Supports the specified item.
        /// </summary>
        /// <param name="item">The item.</param>
        /// <returns><c>true</c> if the provider supports the item.</returns>
        bool Supports(BaseItem item);
    }
}