1
0
mirror of https://github.com/ZetaKebab/MpcNET.git synced 2025-01-14 22:18:43 +00:00
This commit is contained in:
glucaci 2016-12-20 12:21:46 +01:00
parent 9b163f32a8
commit 6829b8cf05

View File

@ -30,6 +30,9 @@ namespace LibMpc
// TODO: notcommands
/// <summary>
/// Shows a list of available song metadata.
/// </summary>
public class TagTypes : IMpcCommand<IEnumerable<string>>
{
public string Value => "tagtypes";
@ -42,6 +45,9 @@ namespace LibMpc
}
}
/// <summary>
/// Gets a list of available URL handlers.
/// </summary>
public class UrlHandlers : IMpcCommand<IEnumerable<string>>
{
public string Value => "urlhandlers";
@ -54,6 +60,9 @@ namespace LibMpc
}
}
/// <summary>
/// Print a list of decoder plugins, followed by their supported suffixes and MIME types.
/// </summary>
public class Decoders : IMpcCommand<IEnumerable<MpdDecoderPlugin>>
{
public string Value => "decoders";