blob: 7606ba257dd755186aa3c4037d3c1c4d471357fc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
using System.Collections.Generic;
using DevHive.Data.Models;
using DevHive.Data.RelationModels;
namespace DevHive.Data.Models.Interfaces
{
public interface IUser : IModel
{
string FirstName { get; set; }
string LastName { get; set; }
ProfilePicture ProfilePicture { get; set; }
HashSet<Language> Languages { get; set; }
HashSet<Technology> Technologies { get; set; }
HashSet<Role> Roles { get; set; }
}
}
|