You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
361 B
13 lines
361 B
|
|
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
|
|
{
|
|
}
|
|
}
|