diff options
Diffstat (limited to 'MediaBrowser.Model/Entities/IByReferenceItem.cs')
| -rw-r--r-- | MediaBrowser.Model/Entities/IByReferenceItem.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/IByReferenceItem.cs b/MediaBrowser.Model/Entities/IByReferenceItem.cs new file mode 100644 index 000000000..7554ad36d --- /dev/null +++ b/MediaBrowser.Model/Entities/IByReferenceItem.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +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 + { + } +} |
