aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library/ItemController.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Library/ItemController.cs')
-rw-r--r--MediaBrowser.Controller/Library/ItemController.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Library/ItemController.cs b/MediaBrowser.Controller/Library/ItemController.cs
index f0be2baf9..b872e8dba 100644
--- a/MediaBrowser.Controller/Library/ItemController.cs
+++ b/MediaBrowser.Controller/Library/ItemController.cs
@@ -310,5 +310,23 @@ namespace MediaBrowser.Controller.Library
return returnFiles;
}
+
+ public Person GetPerson(string name)
+ {
+ // not yet implemented
+ return null;
+ }
+
+ public Studio GetStudio(string name)
+ {
+ // not yet implemented
+ return null;
+ }
+
+ public Year GetYear(int value)
+ {
+ // not yet implemented
+ return null;
+ }
}
}