30 lines
794 B
C#
30 lines
794 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
{
|
|
/// <summary>
|
|
/// Marker interface
|
|
/// </summary>
|
|
public interface IItemByName : IHasMetadata
|
|
{
|
|
/// <summary>
|
|
/// Gets the tagged items.
|
|
/// </summary>
|
|
/// <param name="inputItems">The input items.</param>
|
|
/// <returns>IEnumerable{BaseItem}.</returns>
|
|
IEnumerable<BaseItem> GetTaggedItems(IEnumerable<BaseItem> inputItems);
|
|
|
|
/// <summary>
|
|
/// Gets the item filter.
|
|
/// </summary>
|
|
/// <returns>Func<BaseItem, System.Boolean>.</returns>
|
|
Func<BaseItem, bool> GetItemFilter();
|
|
}
|
|
|
|
public interface IHasDualAccess : IItemByName
|
|
{
|
|
bool IsAccessedByName { get; }
|
|
}
|
|
}
|