8 lines
201 B
Go
8 lines
201 B
Go
package dto
|
|
|
|
type BookUserGet 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"`
|
|
}
|