Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jorgelevy
Created October 4, 2019 06:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jorgelevy/f92c905169a4debee51dd99f69f73a9e to your computer and use it in GitHub Desktop.
Save jorgelevy/f92c905169a4debee51dd99f69f73a9e to your computer and use it in GitHub Desktop.
public class Person
{
public int id { get; set; }
[Display(Name = "First Name")]
public string FirstName { get; set; }
[Display(Name = "Last Name")]
public string LastName { get; set; }
[Display(Name = "Birthday")]
public DateTime Birthday { get; set; }
[Display(Name = "Is Active")]
public bool IsActive { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment