Skip to content

Instantly share code, notes, and snippets.

@jsonw23
jsonw23 / Contact.cs
Created April 15, 2011 04:24
Example Contact Form to illustrate tricky model binding situations in ASP.NET MVC 3
using System.Collections.Generic;
namespace GeekJ.Examples.ContactForm.Models
{
public class Contact
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string Email { get; set; }