1
0
mirror of https://github.com/ZetaKebab/MpcNET.git synced 2025-01-14 22:18:43 +00:00
MpcNET/LibMpc/Commands/IMpcCommand.cs

10 lines
217 B
C#
Raw Normal View History

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