IF.Lastfm/IF.Lastfm.Core/Api/Commands/IAsyncCommand.cs
2013-09-01 20:52:44 +01:00

10 lines
160 B
C#

using System.Threading.Tasks;
namespace IF.Lastfm.Core.Api.Commands
{
internal interface IAsyncCommand<T>
{
Task<T> ExecuteAsync();
}
}