aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Services/Models/Identity/User/UserServiceModel.cs
blob: de57faf02f80ebd448ab8c15582240ac51ebbe8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
using System.Collections.Generic;
using DevHive.Common.Models.Identity;

namespace DevHive.Services.Models.Identity.User
{
	public class UserServiceModel : BaseUserServiceModel
	{
		public IList<RoleModel> Role { get; set; } = new List<RoleModel>();
		public List<UserServiceModel> Friends { get; set; } = new List<UserServiceModel>();
	}
}