2015-01-24 23:34:50 -07:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2013-09-10 11:56:00 -07:00
|
|
|
|
|
2013-06-27 12:29:58 -07:00
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Marker interface
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IItemByName
|
|
|
|
|
{
|
2014-03-09 15:14:44 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the tagged items.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="inputItems">The input items.</param>
|
|
|
|
|
/// <returns>IEnumerable{BaseItem}.</returns>
|
|
|
|
|
IEnumerable<BaseItem> GetTaggedItems(IEnumerable<BaseItem> inputItems);
|
2015-01-24 23:34:50 -07:00
|
|
|
|
|
2015-02-05 22:39:07 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the item filter.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>Func<BaseItem, System.Boolean>.</returns>
|
2015-01-26 15:47:16 -07:00
|
|
|
|
Func<BaseItem, bool> GetItemFilter();
|
2013-06-27 12:29:58 -07:00
|
|
|
|
}
|
2013-09-10 12:30:56 -07:00
|
|
|
|
|
2013-11-21 13:48:26 -07:00
|
|
|
|
public interface IHasDualAccess : IItemByName
|
|
|
|
|
{
|
|
|
|
|
bool IsAccessedByName { get; }
|
|
|
|
|
}
|
2013-06-27 12:29:58 -07:00
|
|
|
|
}
|