mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-08 16:58:50 +01:00
Manage some items as single instance throughout #54
This commit is contained in:
16
MediaBrowser.Model/Entities/IByReferenceItem.cs
Normal file
16
MediaBrowser.Model/Entities/IByReferenceItem.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace MediaBrowser.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// This is a marker class that tells us that a particular item type may be physically resolved
|
||||
/// more than once within the library and we need to be sure to resolve them all to the same
|
||||
/// instance of that item.
|
||||
/// </summary>
|
||||
public interface IByReferenceItem
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -45,6 +45,7 @@
|
||||
<Compile Include="Dto\BaseItemPerson.cs" />
|
||||
<Compile Include="Dto\ChapterInfoDto.cs" />
|
||||
<Compile Include="Dto\IItemDto.cs" />
|
||||
<Compile Include="Entities\IByReferenceItem.cs" />
|
||||
<Compile Include="Querying\ItemsByNameQuery.cs" />
|
||||
<Compile Include="Entities\BaseItemInfo.cs" />
|
||||
<Compile Include="Connectivity\ClientConnectionInfo.cs" />
|
||||
|
||||
Reference in New Issue
Block a user