namespace MediaBrowser.Model.Querying { /// /// Class ArtistsQuery /// public class ArtistsQuery : ItemsByNameQuery { /// /// Filter by artists that are on tour, or not /// /// null if [is on tour] contains no value, true if [is on tour]; otherwise, false. public bool? IsOnTour { get; set; } } }