aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Services/Models/Identity/User/UpdateUserServiceModel.cs
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2021-01-21 09:29:50 +0200
committertranstrike <transtrike@gmail.com>2021-01-21 09:29:50 +0200
commit0d4ec399e6c9246dd0d3050dda2c81043cf7f51d (patch)
treed4d23b971239c26395bf18e83f753dfb849afc25 /src/DevHive.Services/Models/Identity/User/UpdateUserServiceModel.cs
parent009e01dc3dc2f78db6a660c65bf0d20bae702348 (diff)
downloadDevHive-0d4ec399e6c9246dd0d3050dda2c81043cf7f51d.tar
DevHive-0d4ec399e6c9246dd0d3050dda2c81043cf7f51d.tar.gz
DevHive-0d4ec399e6c9246dd0d3050dda2c81043cf7f51d.zip
Fixed Password property positioning
Diffstat (limited to 'src/DevHive.Services/Models/Identity/User/UpdateUserServiceModel.cs')
-rw-r--r--src/DevHive.Services/Models/Identity/User/UpdateUserServiceModel.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/DevHive.Services/Models/Identity/User/UpdateUserServiceModel.cs b/src/DevHive.Services/Models/Identity/User/UpdateUserServiceModel.cs
index 87af43a..835bf54 100644
--- a/src/DevHive.Services/Models/Identity/User/UpdateUserServiceModel.cs
+++ b/src/DevHive.Services/Models/Identity/User/UpdateUserServiceModel.cs
@@ -7,6 +7,8 @@ namespace DevHive.Services.Models.Identity.User
{
public Guid Id { get; set; }
+ public string Password { get; set; }
+
public HashSet<UpdateUserCollectionServiceModel> Roles { get; set; } = new HashSet<UpdateUserCollectionServiceModel>();
public HashSet<UpdateUserCollectionServiceModel> Friends { get; set; } = new HashSet<UpdateUserCollectionServiceModel>();