using System.Collections.Generic; 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 IReadOnlyDictionary> FormatResponse(IReadOnlyDictionary> response) { return response; } } // TODO: urlhandlers // TODO: decoders } } }