16 lines
193 B
Go
16 lines
193 B
Go
|
package models
|
||
|
|
||
|
import (
|
||
|
"gorm.io/gorm"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
type User struct {
|
||
|
gorm.Model
|
||
|
Username string
|
||
|
Email string
|
||
|
PasswordHash []byte
|
||
|
PasswordSalt string
|
||
|
LastLoginAt time.Time
|
||
|
}
|