jellyfin/MediaBrowser.Controller/RelatedMedia/IRelatedMediaProvider.cs

12 lines
247 B
C#
Raw Normal View History

2016-03-27 23:11:27 +02:00
namespace MediaBrowser.Controller.RelatedMedia
{
public interface IRelatedMediaProvider
{
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
string Name { get; }
}
}