2024-09-07 16:42:56 +05:00

13 lines
259 B
Go

package create
type requestModel struct {
Password string `json:"password" validate:"required"`
Login *string `json:"login"`
Email *string `json:"email"`
}
type responseModel struct {
Token string `json:"token"`
UserId string `json:"userId"`
}