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