Skip to content

Instantly share code, notes, and snippets.

@ayende
Created August 4, 2020 15:33
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 ayende/67649ce68ad38478ea46d9ffb8e9fec6 to your computer and use it in GitHub Desktop.
Save ayende/67649ce68ad38478ea46d9ffb8e9fec6 to your computer and use it in GitHub Desktop.
var user = new
{
AcceptedEula = default(bool?), // set to null, mark the field as bool?
RegisteredAt = DateTime.Today, // set to today, the field is DateTime
Name = default(string), // set to null, mark the field as string
ActiveTasks = 0, // set to 0, the field is an int
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment