2014-03-09 22:14:44 +00:00
|
|
|
|
using System.Collections.Generic;
|
2013-09-10 18:56:00 +00:00
|
|
|
|
|
2013-06-27 19:29:58 +00:00
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Marker interface
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IItemByName
|
|
|
|
|
{
|
2014-03-09 22:14:44 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the tagged items.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="inputItems">The input items.</param>
|
|
|
|
|
/// <returns>IEnumerable{BaseItem}.</returns>
|
|
|
|
|
IEnumerable<BaseItem> GetTaggedItems(IEnumerable<BaseItem> inputItems);
|
2013-06-27 19:29:58 +00:00
|
|
|
|
}
|
2013-09-10 19:30:56 +00:00
|
|
|
|
|
2013-11-21 20:48:26 +00:00
|
|
|
|
public interface IHasDualAccess : IItemByName
|
|
|
|
|
{
|
|
|
|
|
bool IsAccessedByName { get; }
|
|
|
|
|
}
|
2013-06-27 19:29:58 +00:00
|
|
|
|
}
|