gin-rest-api/models/book.go

10 lines
142 B
Go
Raw Normal View History

2024-09-26 15:15:08 +02:00
package models
type Book struct {
ID uint `json:"id" gorm:"primary_key"`
Title string `json:"title"`
Author string `json:"author"`
}