summaryrefslogtreecommitdiffstats
path: root/src/Data/DTOs/UserDto.cs
blob: 26733d500234dbe37b2fbe1b65ed9fee3df73c93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using IOL.Fagprove.Data.Enums;

namespace IOL.Fagprove.Data.DTOs
{
    public class UserDto
    {
        public Guid Id { get; set; }
        public string Name { get; set; }
        public string Email { get; set; }
        public UserRole Role { get; set; }
    }
}