Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public ActionResult Index(AuthInitialRequest request)
  2. {
  3. return View(request);
  4. }
  5.  
  6. public class AuthInitialRequest
  7. {
  8. [Required]
  9. public string FooBar { get; set; }
  10. ...
  11. }
  12.  
  13. public class AuthInitialRequest
  14. {
  15. [Required]
  16. [QueryStringProperty("foo-bar")
  17. public string FooBar { get; set; }
  18. ...
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement