pejhancctv/models/jwt.go

8 lines
126 B
Go
Raw Normal View History

2024-01-08 16:06:31 +03:30
package models
type Jwt struct {
Jwt_id uint `gorm:"primaryKey"`
User_id uint
User User `gorm:"references:User_id"`
}