diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-09 13:47:19 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-09 13:47:19 -0400 |
| commit | 2aece7376e289020099f7c8342c2fb15f4e7ee5a (patch) | |
| tree | ea433b08132d4a7bcfabdf89c94831cc114833f2 /MediaBrowser.Controller/Entities/IByReferenceItem.cs | |
| parent | fad1ac8e9fc0feff1936fce52ff46e91554ef2d7 (diff) | |
moved IByReferenceItem to the controller project
Diffstat (limited to 'MediaBrowser.Controller/Entities/IByReferenceItem.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/IByReferenceItem.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/IByReferenceItem.cs b/MediaBrowser.Controller/Entities/IByReferenceItem.cs new file mode 100644 index 000000000..b071473e1 --- /dev/null +++ b/MediaBrowser.Controller/Entities/IByReferenceItem.cs @@ -0,0 +1,12 @@ + +namespace MediaBrowser.Controller.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 + { + } +} |
