2015-01-25 01:34:50 -05:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
2013-09-10 14:56:00 -04:00
|
|
|
|
|
2013-06-27 15:29:58 -04:00
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Marker interface
|
|
|
|
|
|
/// </summary>
|
2015-07-08 12:10:34 -04:00
|
|
|
|
public interface IItemByName : IHasMetadata
|
2013-06-27 15:29:58 -04:00
|
|
|
|
{
|
2014-03-09 18:14:44 -04: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 01:34:50 -05:00
|
|
|
|
|
2016-05-07 13:47:41 -04:00
|
|
|
|
IEnumerable<BaseItem> GetTaggedItems(InternalItemsQuery query);
|
2013-06-27 15:29:58 -04:00
|
|
|
|
}
|
2013-09-10 15:30:56 -04:00
|
|
|
|
|
2013-11-21 15:48:26 -05:00
|
|
|
|
public interface IHasDualAccess : IItemByName
|
|
|
|
|
|
{
|
|
|
|
|
|
bool IsAccessedByName { get; }
|
|
|
|
|
|
}
|
2013-06-27 15:29:58 -04:00
|
|
|
|
}
|