diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-11-13 11:45:41 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-11-13 11:45:41 -0500 |
| commit | e0f46bb91ec1f3e79ec93422fb5f7c92112ad4c9 (patch) | |
| tree | 3e0ea16ed57c2c1a151fcc194fcfa03e54098b68 /MediaBrowser.Controller/Library/ILibraryManager.cs | |
| parent | 90d4f9a6fd34dc438781393b45dac0e2acd08236 (diff) | |
updated nuget
Diffstat (limited to 'MediaBrowser.Controller/Library/ILibraryManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/ILibraryManager.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index 0bab0d356..0a89c0df8 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -294,5 +294,13 @@ namespace MediaBrowser.Controller.Library /// <param name="item">The item.</param> /// <returns>System.String.</returns> string FindCollectionType(BaseItem item); + + /// <summary> + /// Saves the metadata. + /// </summary> + /// <param name="item">The item.</param> + /// <param name="updateType">Type of the update.</param> + /// <returns>Task.</returns> + Task SaveMetadata(BaseItem item, ItemUpdateType updateType); } }
\ No newline at end of file |
