2014-02-19 05:21:03 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2014-07-08 01:41:03 +00:00
|
|
|
|
using System.Collections.Generic;
|
2014-01-28 18:37:01 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Marker interface
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IMetadataProvider
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the name.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name.</value>
|
|
|
|
|
string Name { get; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public interface IMetadataProvider<TItemType> : IMetadataProvider
|
|
|
|
|
where TItemType : IHasMetadata
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|