gin-rest-api/models/book.go
2024-09-26 15:15:08 +02:00

9 lines
142 B
Go

package models
type Book struct {
ID uint `json:"id" gorm:"primary_key"`
Title string `json:"title"`
Author string `json:"author"`
}