aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/RelatedMedia/IRelatedMediaProvider.cs
blob: bb2a0cd8981fb4cc158e66ecd871e8a61b9a8ee4 (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace MediaBrowser.Controller.RelatedMedia
{
    public interface IRelatedMediaProvider
    {
        /// <summary>
        /// Gets the name.
        /// </summary>
        /// <value>The name.</value>
        string Name { get; }
    }
}