IF.Lastfm/IF.Lastfm.Core/Api/Commands/IAsyncCommand.cs

14 lines
290 B
C#
Raw Normal View History

2013-07-23 22:46:29 +01:00
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);
}
}