Skip to content

Instantly share code, notes, and snippets.

@taylonr
Created January 19, 2013 03:54
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 taylonr/4570666 to your computer and use it in GitHub Desktop.
Save taylonr/4570666 to your computer and use it in GitHub Desktop.
public class User
{
public string Email {get; set;}
public string FirstName {get; set;}
public string LastName {get; set;}
public string Password {get; set;}
}
public class UserLogic
{
public void CreateUser()
{
var u = new User{
Email = "nate@example.com",
FirstName = "Nate"
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment