Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Last active March 5, 2016 19:20
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 dcomartin/eb3c0319bc54fcf436fb to your computer and use it in GitHub Desktop.
Save dcomartin/eb3c0319bc54fcf436fb to your computer and use it in GitHub Desktop.
public class User
{
[Key]
public string Id { get; set; } = Guid.NewGuid().ToString();
public string Name { get; set; }
public string Email { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment