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

14 lines
205 B
C#
Raw Normal View History

2013-06-23 20:10:57 +01:00
using System.Text;
using System.Threading.Tasks;
namespace IF.Lastfm.Core.Api.Commands
{
internal interface IAsyncLastCommand
{
}
internal interface IAsyncLastCommand<T>
{
}
}