aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IByReferenceItem.cs
blob: b071473e11c6b8ec577a6d1c8173fee95c36b316 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace MediaBrowser.Controller.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
    {
    }
}