Skip to content

Instantly share code, notes, and snippets.

@Rickedb
Last active May 1, 2019 03:08
Show Gist options
  • Save Rickedb/61828763d10082e5a926be31088413ae to your computer and use it in GitHub Desktop.
Save Rickedb/61828763d10082e5a926be31088413ae to your computer and use it in GitHub Desktop.
public class Person
{
public int Id { get; set; }
public string Name { get; set; }
public string Surname { get; set; }
public int Age { get; set; }
public string Document { get; set; }
public DateTime BornAt { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment