aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Services/Models/Identity/User/UpdateUserServiceModel.cs
blob: 87af43acce4b7f00c8f0aa8a51aa219f1cd02d6c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;

namespace DevHive.Services.Models.Identity.User
{
    public class UpdateUserServiceModel : BaseUserServiceModel
	{
		public Guid Id { get; set; }

		public HashSet<UpdateUserCollectionServiceModel> Roles { get; set; } = new HashSet<UpdateUserCollectionServiceModel>();

		public HashSet<UpdateUserCollectionServiceModel> Friends { get; set; } = new HashSet<UpdateUserCollectionServiceModel>();

		public HashSet<UpdateUserCollectionServiceModel> Languages { get; set; } = new HashSet<UpdateUserCollectionServiceModel>();

		public HashSet<UpdateUserCollectionServiceModel> Technologies { get; set; } = new HashSet<UpdateUserCollectionServiceModel>();

	}
}