Files
ordr/api/dto/user_response.go

12 lines
279 B
Go

package dto
// User response for exposing to the front-end
// :3
type UserResponse struct {
Id int `json: "id"`
Name string `json: "name"`
JobPosition string `json: "job_position"`
Active bool `json: "active"`
Admin bool `json: "admin"`
}