mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
23 lines
No EOL
675 B
C#
23 lines
No EOL
675 B
C#
using Roadie.Library;
|
|
using Roadie.Library.Models.Statistics;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Roadie.Api.Services
|
|
{
|
|
public interface IStatisticsService
|
|
{
|
|
Task<OperationResult<LibraryStats>> LibraryStatistics();
|
|
|
|
Task<OperationResult<IEnumerable<DateAndCount>>> ArtistsByDate();
|
|
|
|
Task<OperationResult<IEnumerable<DateAndCount>>> ReleasesByDate();
|
|
|
|
Task<OperationResult<IEnumerable<DateAndCount>>> ReleasesByDecade();
|
|
|
|
Task<OperationResult<IEnumerable<DateAndCount>>> SongsPlayedByDate();
|
|
|
|
Task<OperationResult<IEnumerable<DateAndCount>>> SongsPlayedByUser();
|
|
|
|
}
|
|
} |