Files
fishfish/backend/models/update_user.go
T
2026-06-04 09:06:22 +03:00

9 lines
188 B
Go

package models
type UpdateUserInput struct {
FirstName string `json:"first_name"`
LastName string `json:"last_name"`
Phone string `json:"phone"`
Role string `json:"role"`
}