2020-08-22 19:56:24 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 20:01:16 +00:00
|
|
|
using System.Collections.Generic;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-02-23 09:53:51 +00:00
|
|
|
/// Marker interface.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
public interface IItemByName
|
|
|
|
{
|
|
|
|
IList<BaseItem> GetTaggedItems(InternalItemsQuery query);
|
|
|
|
}
|
|
|
|
|
|
|
|
public interface IHasDualAccess : IItemByName
|
|
|
|
{
|
|
|
|
bool IsAccessedByName { get; }
|
|
|
|
}
|
|
|
|
}
|