summaryrefslogtreecommitdiffstats
path: root/src/Data/Models/User.cs
blob: 3ff2878bf6822be77b513f054cf35b8cc7ec3c74 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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; }


    }
}