1
0
mirror of https://github.com/ZetaKebab/MpcNET.git synced 2025-01-14 22:18:43 +00:00

Reflection commands

This commit is contained in:
glucaci 2016-12-02 13:26:01 +01:00
parent 43f695b7e4
commit e1430d193f

View File

@ -0,0 +1,28 @@
namespace LibMpc
{
public partial class Commands
{
/// <summary>
/// https://www.musicpd.org/doc/protocol/reflection_commands.html
/// </summary>
public static class Reflection
{
// TODO: config
// TODO: commands
// TODO: notcommands
public class TagTypes : IMpcCommand
{
public string Value => "tagtypes";
public object ParseResponse(object response)
{
throw new System.NotImplementedException();
}
}
// TODO: urlhandlers
// TODO: decoders
}
}
}