18 lines
360 B
C#
18 lines
360 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace MediaBrowser.Controller.Entities
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Marker interface
|
|||
|
/// </summary>
|
|||
|
public interface IItemByName
|
|||
|
{
|
|||
|
IList<BaseItem> GetTaggedItems(InternalItemsQuery query);
|
|||
|
}
|
|||
|
|
|||
|
public interface IHasDualAccess : IItemByName
|
|||
|
{
|
|||
|
bool IsAccessedByName { get; }
|
|||
|
}
|
|||
|
}
|