1
0
mirror of https://github.com/ZetaKebab/MpcNET.git synced 2025-07-01 08:47:36 +00:00

Class for Playlist commands added. Test playlists created.

This commit is contained in:
glucaci
2016-12-20 14:54:57 +01:00
parent 03800369b6
commit 16619f7c44
5 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,24 @@
namespace LibMpc
{
public partial class Commands
{
public static class Playlists
{
/// <summary>
/// https://www.musicpd.org/doc/protocol/queue.html
/// </summary>
public static class Current
{
}
/// <summary>
/// https://www.musicpd.org/doc/protocol/playlist_files.html
/// </summary>
public static class Stored
{
}
}
}
}