namespace MediaBrowser.Controller.Entities.Audio { /// /// Class MusicArtist /// public class MusicArtist : Folder { /// /// Gets or sets the last fm image URL. /// /// The last fm image URL. public string LastFmImageUrl { get; set; } public string LastFmImageSize { get; set; } /// /// Gets the user data key. /// /// System.String. public override string GetUserDataKey() { return Artist.GetUserDataKey(this); } } }