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

11 lines
259 B
C#

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