Manage some items as single instance throughout #54

This commit is contained in:
Eric Reed
2013-03-15 15:08:49 -04:00
parent b86a03bbdc
commit c02ac2a8ca
8 changed files with 70 additions and 8 deletions

View 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
{
}
}