Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- [HttpGet("{torrentType}/{query}/{filter}/{category}/{offset}")]
- public async Task<IEnumerable<Torrent>> Get(TorrentType torrentType,
- string query = null,
- string category = null,
- string filter = null,
- string uploader = null,
- int offset = 1)
- {
- return await _searchService.QueryAsync(torrentType, query, category, filter, uploader, offset);
- }
Add Comment
Please, Sign In to add comment