Created one part of all endpoints to admin the user

This commit is contained in:
2026-02-21 18:32:32 +01:00
parent ac515b8d61
commit e0a4e88eca
21 changed files with 340 additions and 0 deletions
@@ -0,0 +1,7 @@
namespace BeReadyBackend.DTO.Users;
public class PatchUserDesignationDto
{
public int Id { get; set; }
public int DesignationId { get; set; }
}