Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created April 22, 2020 07:06
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 bjoerntx/5c53e924c206458a62823c5aba5cb43a to your computer and use it in GitHub Desktop.
Save bjoerntx/5c53e924c206458a62823c5aba5cb43a to your computer and use it in GitHub Desktop.
public class Customer
{
public long Id { get; set; }
public string Name { get; set; }
public string Firstname { get; set; }
public string Street { get; set; }
public string City { get; set; }
public string State { get; set; }
public string Postalcode { get; set; }
public DateTime DOB { get; set; }
public bool Tax { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment