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