Added more to the stats, user stats is now available via the api !wip

This commit is contained in:
TidusJar 2018-08-02 13:34:28 +01:00
parent 0a4950acbc
commit 17c78b48a5
4 changed files with 40 additions and 23 deletions

View file

@ -0,0 +1,9 @@
using System.Threading.Tasks;
namespace Ombi.Core.Engine
{
public interface IUserStatsEngine
{
Task<UserStatsSummary> GetSummary(SummaryRequest request);
}
}