IByReferenceItem.cs 447 B

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