2013-04-20 18:02:16 -07:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities.Audio
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class Artist
|
|
|
|
|
/// </summary>
|
2013-06-27 12:29:58 -07:00
|
|
|
|
public class Artist : BaseItem, IItemByName
|
2013-04-20 18:02:16 -07:00
|
|
|
|
{
|
2013-09-06 08:23:20 -07:00
|
|
|
|
public string LastFmImageUrl { get; set; }
|
|
|
|
|
|
2013-04-20 18:02:16 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the user data key.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
public override string GetUserDataKey()
|
|
|
|
|
{
|
2013-04-21 21:38:03 -07:00
|
|
|
|
return "Artist-" + Name;
|
2013-04-20 18:02:16 -07:00
|
|
|
|
}
|
2013-04-24 07:05:47 -07:00
|
|
|
|
|
2013-04-20 18:02:16 -07:00
|
|
|
|
}
|
|
|
|
|
}
|