diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-05-04 12:33:22 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-05-04 12:33:22 -0400 |
| commit | 107d1fc4f136813eed648dda5d18f433ed9302e2 (patch) | |
| tree | b4430e17ca0e43fae5369ee01c2b54c7eb495560 /MediaBrowser.Controller/Library/ILibraryManager.cs | |
| parent | 2eef80f96e484292a6416dec4bc69079710ff0f2 (diff) | |
move media path methods to core
Diffstat (limited to 'MediaBrowser.Controller/Library/ILibraryManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/ILibraryManager.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index 5388b8668..07ba41b3d 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -569,5 +569,8 @@ namespace MediaBrowser.Controller.Library /// <param name="parent">The parent.</param> /// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns> bool IgnoreFile(FileSystemMetadata file, BaseItem parent); + + void AddVirtualFolder(string name, string collectionType, string[] mediaPaths, bool refreshLibrary); + void AddMediaPath(string virtualFolderName, string path); } }
\ No newline at end of file |
