mirror of
https://github.com/sphildreth/roadie
synced 2024-11-29 07:30:21 +00:00
96c2853d51
This reverts commit 461719f826
.
12 lines
No EOL
336 B
C#
12 lines
No EOL
336 B
C#
using Roadie.Library.Models.Users;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Roadie.Library.Scrobble
|
|
{
|
|
public interface IScrobblerIntegration
|
|
{
|
|
Task<OperationResult<bool>> NowPlaying(User roadieUser, ScrobbleInfo scrobble);
|
|
|
|
Task<OperationResult<bool>> Scrobble(User roadieUser, ScrobbleInfo scrobble);
|
|
}
|
|
} |