drahoot/cmd/structs.go

17 lines
378 B
Go
Raw Normal View History

2024-12-06 13:35:43 +01:00
package cmd
type user struct {
Id int `json:"id"`
Name string `json:"nombre"`
Surname1 string `json:"apellido1"`
Surname2 string `json:"apellido2"`
Email string `json:"email"`
Password string `json:"password"`
AccountType string `json:"type"`
2024-12-06 13:35:43 +01:00
}
type response struct {
Contents any `json:"contents"`
Success bool `json:"success"`
}