Artist.cs 654 B

123456789101112131415161718192021222324
  1. 
  2. namespace MediaBrowser.Controller.Entities.Audio
  3. {
  4. /// <summary>
  5. /// Class Artist
  6. /// </summary>
  7. public class Artist : BaseItem
  8. {
  9. /// <summary>
  10. /// Gets the user data key.
  11. /// </summary>
  12. /// <returns>System.String.</returns>
  13. public override string GetUserDataKey()
  14. {
  15. return "Artist-" + Name;
  16. }
  17. /// <summary>
  18. /// Gets or sets a value indicating whether this instance is on tour.
  19. /// </summary>
  20. /// <value><c>true</c> if this instance is on tour; otherwise, <c>false</c>.</value>
  21. public bool IsOnTour { get; set; }
  22. }
  23. }