Skip to content

Commit

Permalink
fix update user issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sdcb committed Dec 5, 2024
1 parent b17e13e commit 34ef260
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BE/Controllers/Admin/AdminUser/Dtos/UpdateUserDto.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace Chats.BE.Controllers.Admin.AdminUser.Dtos;
public record UpdateUserDto
{
[JsonPropertyName("id")]
public required Guid UserId { get; init; }
public required int UserId { get; init; }

[JsonPropertyName("password")]
public string? Password { get; init; }
Expand Down

0 comments on commit 34ef260

Please sign in to comment.