From 17bacee0890cb03a579f9469e435d922bbdfdd50 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 21 Nov 2013 15:48:26 -0500 Subject: consolidate Artist & MusicArtist --- MediaBrowser.Controller/Library/ILibraryManager.cs | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'MediaBrowser.Controller/Library') diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index 0a89c0df8..338edd568 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -60,7 +60,7 @@ namespace MediaBrowser.Controller.Library /// /// The name. /// Task{Artist}. - Artist GetArtist(string name); + MusicArtist GetArtist(string name); /// /// Gets a Studio @@ -302,5 +302,18 @@ namespace MediaBrowser.Controller.Library /// Type of the update. /// Task. Task SaveMetadata(BaseItem item, ItemUpdateType updateType); + + /// + /// Gets all artists. + /// + /// IEnumerable{System.String}. + IEnumerable GetAllArtists(); + + /// + /// Gets all artists. + /// + /// The items. + /// IEnumerable{System.String}. + IEnumerable GetAllArtists(IEnumerable items); } } \ No newline at end of file -- cgit v1.2.3