aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/IByReferenceItem.cs
diff options
context:
space:
mode:
authorEric Reed <ebr@mediabrowser3.com>2013-03-15 15:08:49 -0400
committerEric Reed <ebr@mediabrowser3.com>2013-03-15 15:08:49 -0400
commitc02ac2a8ca0a01e6951d5ccca13e98a118057505 (patch)
tree4e1215674203c4f9eaa95671727d72a4492f62b0 /MediaBrowser.Model/Entities/IByReferenceItem.cs
parentb86a03bbdcca3c03b2cd880e607472bc7b3d0850 (diff)
Manage some items as single instance throughout #54
Diffstat (limited to 'MediaBrowser.Model/Entities/IByReferenceItem.cs')
-rw-r--r--MediaBrowser.Model/Entities/IByReferenceItem.cs16
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
+ {
+ }
+}