8 lines
150 B
Go
8 lines
150 B
Go
package responses
|
|
|
|
type UserResponse struct {
|
|
Id string `json:"id"`
|
|
UserName string `json:"username"`
|
|
}
|
|
|
|
type UserResponseList []UserResponse
|