Created
July 8, 2017 17:41
-
-
Save robinvanderknaap/a062d953680b5e27787b3b25f9dda6fe to your computer and use it in GitHub Desktop.
This file contains 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 User | |
{ | |
public int Id { get; set; } | |
public string Firstname { get; set; } | |
public string Lastname { get; set; } | |
public string Email { get; set; } | |
public DateTime DateOfBirth { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment