1
0
mirror of https://github.com/ZetaKebab/MpcNET.git synced 2025-07-02 00:57:38 +00:00

MpdResponse refactored (partial)

This commit is contained in:
glucaci
2016-12-06 12:53:49 +01:00
parent ec24b3f01a
commit 9212021be6
7 changed files with 199 additions and 352 deletions

View File

@ -0,0 +1,17 @@
namespace LibMpc
{
public interface IMpdRequest
{
IMpcCommand Command { get; }
}
public class MpdRequest : IMpdRequest
{
public MpdRequest(IMpcCommand command)
{
Command = command;
}
public IMpcCommand Command { get; }
}
}