Files
MpcNET/LibMpc/Commands/IMpcCommand.cs
T

12 lines
240 B
C#

using System.Collections.Generic;
using System.Linq;
namespace LibMpc
{
public interface IMpcCommand<out T>
{
string Value { get; }
T FormatResponse(IList<KeyValuePair<string, string>> response);
}
}