diff options
Diffstat (limited to 'src/Data/Models/User.cs')
| -rw-r--r-- | src/Data/Models/User.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Data/Models/User.cs b/src/Data/Models/User.cs new file mode 100644 index 0000000..3ff2878 --- /dev/null +++ b/src/Data/Models/User.cs @@ -0,0 +1,15 @@ +using IOL.Fagprove.Data.Enums; +using Microsoft.AspNetCore.Identity; + +namespace IOL.Fagprove.Data.Models +{ + public class User : CoreDataModel + { + public string Name { get; set; } + public string Email { get; set; } + public string Password { get; set; } + public UserRole Role { get; set; } + + + } +}
\ No newline at end of file |
