Last active
March 5, 2016 19:20
-
-
Save dcomartin/eb3c0319bc54fcf436fb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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