Skip to content

Instantly share code, notes, and snippets.

@CoreyKaylor
Last active August 29, 2015 14:08
Show Gist options
  • Save CoreyKaylor/00fb66991dcd6ceaa1ce to your computer and use it in GitHub Desktop.
Save CoreyKaylor/00fb66991dcd6ceaa1ce to your computer and use it in GitHub Desktop.
using MvcSample.Web.Models;
namespace MvcSample.Web
{
public class HomeController
{
public User Index()
{
var user = new User
{
Name = "Test",
Address = "My address"
};
return user;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment