ea87f024c3
modified: main_dc/yalarba/api_es/internal/models/base.go prettify it
15 lines
235 B
Go
15 lines
235 B
Go
package models
|
|
|
|
import ()
|
|
|
|
type Account struct {
|
|
/*ID, CreatedAt, UpdatedAt, DeletedAt (Update's history)*/
|
|
Base Base `gorm:"embedded"`
|
|
|
|
FirstName string
|
|
LastName string
|
|
Email string
|
|
Password string
|
|
IsAdmin bool
|
|
}
|