mirror of
https://github.com/ZetaKebab/MpcNET.git
synced 2025-01-14 22:18:43 +00:00
12 lines
240 B
C#
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);
|
|
}
|
|
} |