mirror of
https://github.com/ZetaKebab/MpcNET.git
synced 2025-01-14 22:18:43 +00:00
Reflection commands
This commit is contained in:
parent
43f695b7e4
commit
e1430d193f
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
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user