mirror of
https://github.com/ZetaKebab/MpcNET.git
synced 2025-01-14 22:18:43 +00:00
62 lines
1.4 KiB
C#
62 lines
1.4 KiB
C#
namespace Libmpc
|
|
{
|
|
/// <summary>
|
|
/// The scope specifier for search commands.
|
|
/// </summary>
|
|
public enum ScopeSpecifier
|
|
{
|
|
/// <summary>
|
|
/// Any attribute of a file.
|
|
/// </summary>
|
|
Any,
|
|
/// <summary>
|
|
/// The path and name of the file.
|
|
/// </summary>
|
|
Filename,
|
|
/// <summary>
|
|
/// The artist of the track.
|
|
/// </summary>
|
|
Artist,
|
|
/// <summary>
|
|
/// The album the track appears on.
|
|
/// </summary>
|
|
Album,
|
|
/// <summary>
|
|
/// The title of the track.
|
|
/// </summary>
|
|
Title,
|
|
/// <summary>
|
|
/// The index of the track on its album.
|
|
/// </summary>
|
|
Track,
|
|
/// <summary>
|
|
/// The name of the track.
|
|
/// </summary>
|
|
Name,
|
|
/// <summary>
|
|
/// The genre of the song.
|
|
/// </summary>
|
|
Genre,
|
|
/// <summary>
|
|
/// The date the track was released.
|
|
/// </summary>
|
|
Date,
|
|
/// <summary>
|
|
/// The composer of the song.
|
|
/// </summary>
|
|
Composer,
|
|
/// <summary>
|
|
/// The performer of the song.
|
|
/// </summary>
|
|
Performer,
|
|
/// <summary>
|
|
/// A comment for the track.
|
|
/// </summary>
|
|
Comment,
|
|
/// <summary>
|
|
/// The disc of a multidisc album the track is on.
|
|
/// </summary>
|
|
Disc
|
|
}
|
|
|
|
} |