Files
bibliomane/internal/dto/booksearchget.go

7 lines
149 B
Go

package dto
type BookSearchGet struct {
Title string `json:"title" binding:"required,max=300"`
Author string `json:"author" binding:"max=100"`
}