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

31 lines
812 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace LibMpc
2016-12-02 12:26:01 +00:00
{
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<string>
2016-12-02 12:26:01 +00:00
{
public string Value => "tagtypes";
public IReadOnlyDictionary<string, IList<string>> FormatResponse(IReadOnlyDictionary<string, IList<string>> response)
2016-12-02 12:26:01 +00:00
{
return response;
2016-12-02 12:26:01 +00:00
}
}
// TODO: urlhandlers
// TODO: decoders
}
}
}