Last active
May 1, 2019 03:08
-
-
Save Rickedb/61828763d10082e5a926be31088413ae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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