8 lines
176 B
Go
8 lines
176 B
Go
package dto
|
|
|
|
type BookSearchGet struct {
|
|
Title string `json:"title" binding:"required,max=300"`
|
|
Author string `json:"author" binding:"max=100"`
|
|
ID uint `json:"id"`
|
|
}
|