aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IVirtualFolderCreator.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Entities/IVirtualFolderCreator.cs')
-rw-r--r--MediaBrowser.Controller/Entities/IVirtualFolderCreator.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/IVirtualFolderCreator.cs b/MediaBrowser.Controller/Entities/IVirtualFolderCreator.cs
new file mode 100644
index 000000000..57e9e8d5d
--- /dev/null
+++ b/MediaBrowser.Controller/Entities/IVirtualFolderCreator.cs
@@ -0,0 +1,15 @@
+
+namespace MediaBrowser.Controller.Entities
+{
+ /// <summary>
+ /// Interface IVirtualFolderCreator
+ /// </summary>
+ public interface IVirtualFolderCreator
+ {
+ /// <summary>
+ /// Gets the folder.
+ /// </summary>
+ /// <returns>Folder.</returns>
+ BasePluginFolder GetFolder();
+ }
+}