2013-04-10 16:04:13 +00:00
|
|
|
|
|
2013-06-09 17:47:19 +00:00
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
2013-03-15 19:08:49 +00:00
|
|
|
|
{
|
|
|
|
|
/// <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
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|