mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 14:54:11 +00:00
13 lines
No EOL
355 B
C#
13 lines
No EOL
355 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>>> ReleasesByDate();
|
|
}
|
|
} |