package model import ( "time" ) type User struct { ID string `bson:"_id,omitempty"` FullName string `bson:"full_name"` Email string `bson:"email"` Password string `bson:"password"` IsActivated bool `bson:"is_activated"` RoleID int `bson:"role_id"` JwtToken string `bson:"jwt_token"` // not in use IsDeleted bool `bson:"is_deleted"` CreatedAt time.Time `bson:"created_at"` UpdatedAt time.Time `bson:"updated_at"` }