go-learn/common/req/post.go

7 lines
136 B
Go
Raw Normal View History

package req
2025-01-13 16:32:03 +08:00
type PostRequest struct {
Title string `json:"title" binding:"required"`
Text string `json:"text" binding:"required"`
}