recommender/internal/schema/user_response.go

10 lines
222 B
Go
Raw Normal View History

2024-11-06 10:47:56 +00:00
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"`
}