Skip to content

Instantly share code, notes, and snippets.

@bradoyler
Created December 11, 2012 19:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bradoyler/4261491 to your computer and use it in GitHub Desktop.
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