1
0
mirror of https://github.com/ZetaKebab/MpcNET.git synced 2024-09-16 05:30:09 +00:00
MpcNET/LibMpc/Enum.cs
2016-11-30 14:42:28 +01:00

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
}
}