Skip to content

Instantly share code, notes, and snippets.

@emrekizildas
Created February 20, 2022 11: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 emrekizildas/79c33c598262978f46109a04e613e9fe to your computer and use it in GitHub Desktop.
Save emrekizildas/79c33c598262978f46109a04e613e9fe to your computer and use it in GitHub Desktop.
public class User
{
public Guid ID { get; set; }
[AlwaysUpper]
public string Firstname { get; set; }
[AlwaysUpper]
public string Lastname { get; set; }
public string EmailAddress { get; set; }
public string IdentityNumber { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment