Files
ordr/api/dto/user_response.go

12 lines
193 B
Go

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