11 lines
187 B
Go
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
|
|
}
|