using System; using System.Net.Http; using System.Threading.Tasks; namespace IF.Lastfm.Core.Api.Commands { internal interface IAsyncCommand { Uri BuildRequestUrl(); Task ExecuteAsync(); Task HandleResponse(HttpResponseMessage response); } }