mirror of
https://github.com/getAlby/lndhub.go.git
synced 2026-01-17 03:45:53 +01:00
18 lines
271 B
Go
18 lines
271 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// User : User Model
|
|
type User struct {
|
|
ID uint `gorm:"primary_key"`
|
|
Email string
|
|
Login string
|
|
Password string
|
|
RefreshToken string
|
|
AccessToken string
|
|
UpdatedAt time.Time
|
|
CreatedAt time.Time
|
|
}
|