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; }
        /// 
        /// Gets the user data key.
        /// 
        /// System.String.
        public override string GetUserDataKey()
        {
            return Artist.GetUserDataKey(this);
        }
    }
}