Files
ordr/api/dto/user_response.go
2025-11-09 23:12:51 -07:00

11 lines
187 B
Go

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