Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hbulens/eeddcb965797d3845c3b3c4160500ea9 to your computer and use it in GitHub Desktop.
Save hbulens/eeddcb965797d3845c3b3c4160500ea9 to your computer and use it in GitHub Desktop.
[HttpGet]
public class SomeApiController : Controller
{
public async Task<dynamic> Get(
int page,
int start,
int limit,
string sort = null,
string group = null,
string filter = null)
{
// Code
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment