namespace MediaBrowser.Controller.Entities.Audio
{
    /// 
    /// Class Artist
    /// 
    public class Artist : BaseItem
    {
        /// 
        /// Gets the user data key.
        /// 
        /// System.String.
        public override string GetUserDataKey()
        {
            return "Artist-" + Name;
        }
        /// 
        /// Gets or sets a value indicating whether this instance is on tour.
        /// 
        /// true if this instance is on tour; otherwise, false.
        public bool IsOnTour { get; set; }
    }
}