Advertisement
Guest User

Untitled

a guest
Aug 27th, 2014
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. public int id {get; set;}
  2. public string name {get; set;}
  3. public string description {get; set;}
  4.  
  5. {
  6. "id" : 1,
  7. "name" : "name",
  8. "description" : "description"
  9. }
  10.  
  11. {
  12. "property_1" : "value_1",
  13. "property_2" : "value_2",
  14. "property_3" : "value_3"
  15. //etc
  16. }
  17.  
  18. return Json(property_1, property_2, property_3);
  19.  
  20. return Json(properties.Split());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement