IByReferenceItem.cs 366 B

123456789101112
  1. 
  2. namespace MediaBrowser.Controller.Entities
  3. {
  4. /// <summary>
  5. /// This is a marker class that tells us that a particular item type may be physically resolved
  6. /// more than once within the library and we need to be sure to resolve them all to the same
  7. /// instance of that item.
  8. /// </summary>
  9. public interface IByReferenceItem
  10. {
  11. }
  12. }