Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save robinvanderknaap/a062d953680b5e27787b3b25f9dda6fe to your computer and use it in GitHub Desktop.
Save robinvanderknaap/a062d953680b5e27787b3b25f9dda6fe to your computer and use it in GitHub Desktop.
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