14 lines
196 B
Go
14 lines
196 B
Go
package model
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
// describes the relationship between a user and a book.
|
|
type UserBook struct {
|
|
gorm.Model
|
|
UserID uint
|
|
BookID uint
|
|
Book Book
|
|
Rating int
|
|
Read bool
|
|
}
|