Skip to content

Instantly share code, notes, and snippets.

@bradoyler
Created December 11, 2012 19:48
Show Gist options
  • Select an option

  • Save bradoyler/4261491 to your computer and use it in GitHub Desktop.

Select an option

Save bradoyler/4261491 to your computer and use it in GitHub Desktop.
the User and People Models
public class User
{
public string Name { get; set; }
public string Email { get; set; }
public string UserName { get; set; }
}
public class Person
{
public string Name { get; set; }
public string Email { get; set; }
public string PersonName { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment