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