11 lines
160 B
Go
11 lines
160 B
Go
package model
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type Book struct {
|
|
gorm.Model
|
|
Title string `json:"title"`
|
|
Author string `json:"author"`
|
|
Rating int `json:"rating"`
|
|
}
|