Skip to content

Instantly share code, notes, and snippets.

@talkingdotnet
Created March 14, 2018 14:20
Show Gist options
  • Save talkingdotnet/76c74601f0921730c9b889c96946fb8b to your computer and use it in GitHub Desktop.
Save talkingdotnet/76c74601f0921730c9b889c96946fb8b to your computer and use it in GitHub Desktop.
public class DropBoxController : ControllerBase
{
[DropboxWebHook]
public IActionResult Dropbox(string id, JObject data)
{
if (!ModelState.IsValid)
{
return BadRequest(ModelState);
}
return Ok();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment