Skip to content

Instantly share code, notes, and snippets.

@theorigin
Created August 4, 2012 15:06
Show Gist options
  • Save theorigin/3258263 to your computer and use it in GitHub Desktop.
Save theorigin/3258263 to your computer and use it in GitHub Desktop.
Json TDD Controller
public ActionResult Index(InputModel model)
{
return Json(new
{
total = 1234,
page = 1,
rows = new List
{
new
{
id = 98732312,
cell =
new
{
prop1 = "a",
prop2 = "b",
prop3 = "C"
}
}
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment