Backend/internal/interfaces/api/responses/user_response.go
2025-09-22 22:12:49 +04:00

8 lines
150 B
Go

package responses
type UserResponse struct {
Id string `json:"id"`
UserName string `json:"username"`
}
type UserResponseList []UserResponse