pop-camarades/models/users.go
2024-12-20 19:58:37 +01:00

17 lines
220 B
Go

package models
import (
"database/sql"
"gorm.io/gorm"
)
type User struct {
gorm.Model
Name string
Email string
Password string
TotpSercet sql.NullString
DisabledAt sql.NullTime
IsAdmin bool
}