feat: get user table

This commit is contained in:
2025-11-09 23:12:51 -07:00
parent 5862378dc1
commit 3ca80e7650
5 changed files with 73 additions and 3 deletions

10
api/dto/user_response.go Normal file
View File

@@ -0,0 +1,10 @@
package dto
// User response for exposing to the front-end
type UserResponse struct {
Id int
Name string
Job_Position string
Active bool
Admin bool
}