IF.Lastfm/IF.Lastfm.Core/Api/IUserApi.cs

16 lines
457 B
C#
Raw Normal View History

using System.Collections.Generic;
2013-06-13 17:27:51 +01:00
using System.Threading.Tasks;
using IF.Lastfm.Core.Api.Enums;
using IF.Lastfm.Core.Objects;
namespace IF.Lastfm.Core.Api
{
public interface IUserApi
{
IAuth Auth { get; }
Task<IEnumerable<Album>> GetTopAlbums(LastStatsTimeSpan span,
int startIndex = 0,
int endIndex = LastFm.DefaultPageLength);
}
}