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