IF.Lastfm/IF.Lastfm.Core/Api/ITrackApi.cs

15 lines
380 B
C#
Raw Normal View History

using System.Collections.Generic;
using System.Threading.Tasks;
using IF.Lastfm.Core.Api.Helpers;
using xBrainLab.Security.Cryptography;
namespace IF.Lastfm.Core.Api
{
public interface ITrackApi
{
IAuth Auth { get; }
Task<LastResponse> ScrobbleAsync(Scrobble scrobble);
Task<LastResponse> ScrobbleAsync(IEnumerable<Scrobble> scrobble);
}
}