/* * Copyright 2008 Matthias Sessler * * This file is part of LibMpc.net. * * LibMpc.net is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2.1 of the License, or * (at your option) any later version. * * LibMpc.net is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with LibMpc.net. If not, see . */ namespace Libmpc { /// /// The scope specifier for search commands. /// public enum ScopeSpecifier { /// /// Any attribute of a file. /// Any, /// /// The path and name of the file. /// Filename, /// /// The artist of the track. /// Artist, /// /// The album the track appears on. /// Album, /// /// The title of the track. /// Title, /// /// The index of the track on its album. /// Track, /// /// The name of the track. /// Name, /// /// The genre of the song. /// Genre, /// /// The date the track was released. /// Date, /// /// The composer of the song. /// Composer, /// /// The performer of the song. /// Performer, /// /// A comment for the track. /// Comment, /// /// The disc of a multidisc album the track is on. /// Disc } }