mirror of
https://github.com/ZetaKebab/MpcNET.git
synced 2025-01-14 22:18:43 +00:00
29 lines
721 B
C#
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
|
|||
|
}
|
|||
|
}
|
|||
|
}
|