Files
ordr/api/dto/user_response.go
2025-11-19 12:26:37 -07:00

12 lines
188 B
Go

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