Skip to content

Instantly share code, notes, and snippets.

@lgolubyev
Created August 16, 2021 10:02
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 lgolubyev/af16ecb78c78c81c152444246079fa86 to your computer and use it in GitHub Desktop.
Save lgolubyev/af16ecb78c78c81c152444246079fa86 to your computer and use it in GitHub Desktop.
class Person
{
public Person(string name) => Name = name;
public string Name { 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