IF.Lastfm/IF.Lastfm.Core/Api/Commands/IAsyncCommand.cs
2013-07-24 00:11:57 +01:00

14 lines
290 B
C#

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