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

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

        /// <summary>
        /// Supportses the specified item.
        /// </summary>
        /// <param name="item">The item.</param>
        /// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
        bool Supports(BaseItem item);
    }
}