Add quota fields to user view model

This commit is contained in:
Kenton Royal 2018-09-05 00:12:19 +01:00
parent cfd9deb17e
commit 9c574fb7e9
7 changed files with 39 additions and 7 deletions

View file

@ -23,6 +23,6 @@ namespace Ombi.Core.Engine.Interfaces
Task<int> GetTotal();
Task UnSubscribeRequest(int requestId, RequestType type);
Task SubscribeToRequest(int requestId, RequestType type);
Task<RequestQuotaCountModel> GetRemainingRequests();
Task<RequestQuotaCountModel> GetRemainingRequests(OmbiUser user = null);
}
}