fixes #521 - Use last fm as a secondary provider for artist images

This commit is contained in:
Luke Pulverenti
2013-09-06 11:23:20 -04:00
parent 032f3d376b
commit 4039c0f704
11 changed files with 204 additions and 34 deletions

View File

@@ -6,6 +6,8 @@ namespace MediaBrowser.Controller.Entities.Audio
/// </summary>
public class Artist : BaseItem, IItemByName
{
public string LastFmImageUrl { get; set; }
/// <summary>
/// Gets the user data key.
/// </summary>

View File

@@ -6,5 +6,6 @@ namespace MediaBrowser.Controller.Entities.Audio
/// </summary>
public class MusicArtist : Folder
{
public string LastFmImageUrl { get; set; }
}
}