1
0
mirror of https://github.com/ZetaKebab/MpcNET.git synced 2024-09-16 05:30:09 +00:00
MpcNET/LibMpc/Commands/Commands.Reflection.cs
2016-12-02 13:26:01 +01:00

29 lines
721 B
C#

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