mirror of
https://github.com/ZetaKebab/MpcNET.git
synced 2025-07-01 00:37:37 +00:00
Reflection commands
This commit is contained in:
28
LibMpc/Commands/Commands.Reflection.cs
Normal file
28
LibMpc/Commands/Commands.Reflection.cs
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user