1
0
mirror of https://github.com/ZetaKebab/MpcNET.git synced 2025-10-29 02:29:49 +00:00
Files
MpcNET/LibMpc/Commands/IMpcCommand.cs

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);
}
}