mirror of
https://github.com/sphildreth/roadie
synced 2024-11-29 23:50:21 +00:00
19 lines
No EOL
438 B
C#
19 lines
No EOL
438 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Roadie.Library.Data.Context
|
|
{
|
|
public interface IRoadieDbUserStats
|
|
{
|
|
Task<Artist> MostPlayedArtist(int userId);
|
|
|
|
Task<Release> MostPlayedRelease(int userId);
|
|
|
|
Task<Track> MostPlayedTrack(int userId);
|
|
|
|
Task<Artist> LastPlayedArtist(int userId);
|
|
|
|
Task<Release> LastPlayedRelease(int userId);
|
|
|
|
Task<Track> LastPlayedTrack(int userId);
|
|
}
|
|
} |