mirror of
https://github.com/sphildreth/roadie
synced 2024-11-23 12:43:13 +00:00
11 lines
No EOL
246 B
C#
11 lines
No EOL
246 B
C#
using Roadie.Library;
|
|
using Roadie.Library.Models.Statistics;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Roadie.Api.Services
|
|
{
|
|
public interface IStatisticsService
|
|
{
|
|
Task<OperationResult<LibraryStats>> LibraryStatistics();
|
|
}
|
|
} |