Guest User

Untitled

a guest
Dec 14th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. [HttpPost]
  2. public void Post([FromQuery] Message message)
  3. {
  4. _service.UserRequest(message);
  5. }
  6.  
  7. public class Message : IEntity
  8. {
  9. public string To { get; set; } = string.Empty;
  10. public string From { get; set; } = string.Empty;
  11. public string Body { get; set; } = string.Empty;
  12. }
Add Comment
Please, Sign In to add comment