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

Type-safe commands for Audio output devices (partial implemented).

This commit is contained in:
glucaci
2016-12-01 17:52:00 +01:00
parent c1f763a9db
commit 1713c707f7
2 changed files with 76 additions and 0 deletions

View File

@ -0,0 +1,10 @@
namespace LibMpc
{
public interface IMpcCommand
{
string Value { get; }
// TODO: Return IMpdResponse and create type-safe input.
object ParseResponse(object response);
}
}