2
0

MusicArtist.cs 608 B

123456789101112131415161718192021222324
  1. 
  2. namespace MediaBrowser.Controller.Entities.Audio
  3. {
  4. /// <summary>
  5. /// Class MusicArtist
  6. /// </summary>
  7. public class MusicArtist : Folder
  8. {
  9. /// <summary>
  10. /// Gets or sets the last fm image URL.
  11. /// </summary>
  12. /// <value>The last fm image URL.</value>
  13. public string LastFmImageUrl { get; set; }
  14. /// <summary>
  15. /// Gets the user data key.
  16. /// </summary>
  17. /// <returns>System.String.</returns>
  18. public override string GetUserDataKey()
  19. {
  20. return Artist.GetUserDataKey(this);
  21. }
  22. }
  23. }