2016-07-29 19:18:03 +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>
|
2015-07-08 16:10:34 +00:00
|
|
|
|
public interface IItemByName : IHasMetadata
|
2013-06-27 19:29:58 +00:00
|
|
|
|
{
|
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);
|
2015-01-25 06:34:50 +00:00
|
|
|
|
|
2016-05-07 17:47:41 +00:00
|
|
|
|
IEnumerable<BaseItem> GetTaggedItems(InternalItemsQuery query);
|
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
|
|
|
|
}
|