From adc532c6e2b6a3b0db6fdd396bd7e7e984235f93 Mon Sep 17 00:00:00 2001 From: glucaci Date: Wed, 7 Dec 2016 12:10:27 +0100 Subject: [PATCH] SendAsync return type changed --- LibMpc/Mpc.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/LibMpc/Mpc.cs b/LibMpc/Mpc.cs index cbcbc50..b39cdda 100644 --- a/LibMpc/Mpc.cs +++ b/LibMpc/Mpc.cs @@ -52,8 +52,7 @@ namespace LibMpc } } - // TODO: create response type - public async Task SendAsync(IMpcCommand command) + public async Task> SendAsync(IMpcCommand command) { var mpdMessage = await _connection.SendAsync(command);