1
0
mirror of https://github.com/ZetaKebab/MpcNET.git synced 2024-09-16 05:30:09 +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);
}
}