Skip to content

Instantly share code, notes, and snippets.

@vkoppaka
Created May 24, 2012 05:26
Show Gist options
  • Select an option

  • Save vkoppaka/2779621 to your computer and use it in GitHub Desktop.

Select an option

Save vkoppaka/2779621 to your computer and use it in GitHub Desktop.
public class Person
{
public int Id { get; set; }
public string Name { get; set; }
public Person(int id, string name)
{
Id = id;
Name = name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment