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