mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
9 lines
No EOL
181 B
C#
9 lines
No EOL
181 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Ombi.Core.Engine
|
|
{
|
|
public interface IUserStatsEngine
|
|
{
|
|
Task<UserStatsSummary> GetSummary(SummaryRequest request);
|
|
}
|
|
} |