maximo tejeda e5d160da8c
All checks were successful
dev test / test (push) Successful in 39s
dev test / vulnCheck (push) Successful in 39s
dev test / Ci-Lint (push) Successful in 24s
FIRST COMMIT
2024-12-14 10:40:22 -04:00

20 lines
463 B
Go

package domain
type Cedulado struct {
Cedula
ID int64 `json:"id"`
Nombres string `json:"nombres"`
Apellido1 string `json:"apellido1"`
Apellido2 string `json:"apellido2"`
Sexo string `json:"sexo"`
Direccion string `json:"direccion"`
Telefono string `json:"telefono"`
FechaNac string `json:"fecha_nac"`
}
type MultipleResults struct {
Data []*Cedulado `json:"data"`
Total int64 `json:"total"`
Page int64 `json:"page"`
}