pop-camarades/models/users.go
2025-03-29 12:44:17 +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
}