diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-07-01 13:17:33 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-07-01 13:17:33 -0400 |
| commit | 57449f62c16a23448770375b04c4786431170c84 (patch) | |
| tree | bece35c637c3d77b43850950c5cc4ec9dbe0dd8e /MediaBrowser.Controller/Library/ILibraryManager.cs | |
| parent | 1d7c83bfc672d7c51c1be825c3126eb0a40e5e7d (diff) | |
added GameGenre
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 6accb0f4a..ddfec703c 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -87,6 +87,14 @@ namespace MediaBrowser.Controller.Library /// <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 the game genre. + /// </summary> + /// <param name="name">The name.</param> + /// <param name="allowSlowProviders">if set to <c>true</c> [allow slow providers].</param> + /// <returns>Task{GameGenre}.</returns> + Task<GameGenre> GetGameGenre(string name, bool allowSlowProviders = false); /// <summary> /// Gets a Year |
