mirror of
https://github.com/Damillora/Shioriko.git
synced 2024-11-01 12:37:33 +00:00
15 lines
190 B
Go
15 lines
190 B
Go
package database
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type User struct {
|
|
ID string `gorm:"size:36"`
|
|
Email string
|
|
Username string
|
|
Password string
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|