diff --git a/LibMpc/Commands/Commands.Reflection.cs b/LibMpc/Commands/Commands.Reflection.cs new file mode 100644 index 0000000..45def98 --- /dev/null +++ b/LibMpc/Commands/Commands.Reflection.cs @@ -0,0 +1,28 @@ +namespace LibMpc +{ + public partial class Commands + { + /// + /// https://www.musicpd.org/doc/protocol/reflection_commands.html + /// + 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 + } + } +}