aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Querying/ArtistsQuery.cs
blob: 4d52eaf4bc1c39c95907bd6e113d426a7855ac6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace MediaBrowser.Model.Querying
{
    /// <summary>
    /// Class ArtistsQuery
    /// </summary>
    public class ArtistsQuery : ItemsByNameQuery
    {
        /// <summary>
        /// Filter by artists that are on tour, or not
        /// </summary>
        /// <value><c>null</c> if [is on tour] contains no value, <c>true</c> if [is on tour]; otherwise, <c>false</c>.</value>
        public bool? IsOnTour { get; set; }
    }
}