diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-10 23:31:00 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-10 23:31:00 -0400 |
| commit | 18325159c5b46d2aa31d2dafd837ede7214b28ef (patch) | |
| tree | 4966247933da5aeffad1672d87c67c1ebbb036f1 /MediaBrowser.Controller/Library/ILibraryManager.cs | |
| parent | fab983b6dcf7b282e8c96e3509209fcc568fb922 (diff) | |
added a new MusicGenre entity
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 ff859af9c..dd2afcb3f 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -82,6 +82,14 @@ namespace MediaBrowser.Controller.Library Task<Genre> GetGenre(string name, bool allowSlowProviders = false); /// <summary> + /// Gets the genre. + /// </summary> + /// <param name="name">The name.</param> + /// <param name="allowSlowProviders">if set to <c>true</c> [allow slow providers].</param> + /// <returns>Task{MusicGenre}.</returns> + Task<MusicGenre> GetMusicGenre(string name, bool allowSlowProviders = false); + + /// <summary> /// Gets a Year /// </summary> /// <param name="value">The value.</param> |
