drahoot/cmd/structs.go

12 lines
287 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
}