Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created October 9, 2019 03:15
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 IntegerMan/51d34843f909bbcfdabc2756ac62d9a3 to your computer and use it in GitHub Desktop.
Save IntegerMan/51d34843f909bbcfdabc2756ac62d9a3 to your computer and use it in GitHub Desktop.
#nullable enable
public class KeywordData
{
public int Id { get; set; }
public string SomeNonNullValue { get; set; }
public string? SomeNullableValue { get; set; }
}
#nullable restore
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment