Guest User

Untitled

a guest
May 25th, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.45 KB | None | 0 0
  1.         [HttpGet("{torrentType}/{query}/{filter}/{category}/{offset}")]
  2.         public async Task<IEnumerable<Torrent>> Get(TorrentType torrentType,
  3.             string query = null,
  4.             string category = null,
  5.             string filter = null,
  6.             string uploader = null,
  7.             int offset = 1)
  8.         {
  9.             return await _searchService.QueryAsync(torrentType, query, category, filter, uploader, offset);
  10.         }
Add Comment
Please, Sign In to add comment