Files
tp/main_dc/yalarba/api_es/internal/models/account.go
T
valitovgaziz 4c5a7af5f5 new file: main_dc/yalarba/api_es/internal/models/account.go
modified:   main_dc/yalarba/api_es/internal/models/base.go
	modified:   main_dc/yalarba/api_es/internal/models/update_history.go
fix update history, add json
set Base without polymorphicValue
create Account object but not finish
2026-01-22 15:43:03 +05:00

14 lines
176 B
Go

package models
import (
"gorm.io/gorm"
)
type Account struct {
Base Base `gorm:"embedded"`
FirstName string
LastName string
Email string
Password string
IsAdmin bool
}