Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type User ¶
type User struct { ID uint `gorm:"primary_key" json:"id"` FirstName string `gorm:"not null" json:"first_name"` LastName string `json:"last_name"` Email string `json:"email"` Hash string `json:"hash"` PasswordToken bool VerifyToken bool Verified bool CreatedAt time.Time `json:"created_at"` UpdatedAt time.Time `json:"updated_at"` DeletedAt *gorm.DeletedAt `gorm:"index" json:"deleted__at"` }
Click to show internal directories.
Click to hide internal directories.