Skip to content

Instantly share code, notes, and snippets.

@lgolubyev
Created August 16, 2021 10:02
Embed
What would you like to do?
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