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

10 lines
160 B
C#
Raw Normal View History

using System.Threading.Tasks;
2013-07-23 22:46:29 +01:00
namespace IF.Lastfm.Core.Api.Commands
{
internal interface IAsyncCommand<T>
{
Task<T> ExecuteAsync();
}
}