mirror of
https://github.com/ZetaKebab/MpcNET.git
synced 2025-01-14 22:18:43 +00:00
10 lines
217 B
C#
10 lines
217 B
C#
|
namespace LibMpc
|
||
|
{
|
||
|
public interface IMpcCommand
|
||
|
{
|
||
|
string Value { get; }
|
||
|
|
||
|
// TODO: Return IMpdResponse and create type-safe input.
|
||
|
object ParseResponse(object response);
|
||
|
}
|
||
|
}
|