1
0
mirror of https://github.com/ZetaKebab/MpcNET.git synced 2024-09-16 05:30:09 +00:00
MpcNET/LibMpc/Commands/IMpcCommand.cs

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