8 lines
204 B
Go
8 lines
204 B
Go
package api
|
|
|
|
type bookPostCreate struct {
|
|
Title string `json:"title" binding:"required,max=300"`
|
|
Author string `json:"author" binding:"max=100"`
|
|
Rating int `json:"rating" binding:"min=0,max=10"`
|
|
}
|