api-platform/internal/schema/user_response.go

10 lines
222 B
Go
Raw Normal View History

2024-11-21 11:25:32 +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"`
}