mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
Request Grid test
This commit is contained in:
parent
e0018f63fa
commit
d5ec429893
24 changed files with 583 additions and 71 deletions
17
src/Ombi.Core/Engine/Interfaces/IRequestEngine.cs
Normal file
17
src/Ombi.Core/Engine/Interfaces/IRequestEngine.cs
Normal file
|
@ -0,0 +1,17 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Ombi.Core.Models.Requests;
|
||||
|
||||
namespace Ombi.Core.Engine.Interfaces
|
||||
{
|
||||
public interface IRequestEngine<T>
|
||||
{
|
||||
|
||||
Task<IEnumerable<T>> GetApprovedRequests();
|
||||
Task<IEnumerable<T>> GetNewRequests();
|
||||
Task<IEnumerable<T>> GetAvailableRequests();
|
||||
RequestCountModel RequestCount();
|
||||
Task<IEnumerable<T>> GetRequests(int count, int position);
|
||||
Task<IEnumerable<T>> GetRequests();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue