recommender/internal/schema/user_response.go
2024-11-06 18:47:56 +08:00

10 lines
222 B
Go

package schema
type CurrentUserResponse struct {
IP string `json:"ip"`
Valid bool `json:"valid"`
UserEmail string `json:"userEmail"`
UserId UserId `json:"userId"`
UserName string `json:"userName"`
}