aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Data/Interfaces/Models/IUser.cs
blob: 0a770f0b29f50c7245b1dae8eb0214d38f799f70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.Collections.Generic;
using DevHive.Data.Models;

namespace DevHive.Data.Interfaces.Models
{
	public interface IUser : IModel
	{
		string FirstName { get; set; }
		string LastName { get; set; }
		string ProfilePictureUrl { get; set; }
		IList<Language> Langauges { get; set; }
		IList<Technology> Technologies { get; set; }
		IList<Role> Roles { get; set; }
		IList<User> Friends { get; set; }
	}
}