gofiber-study/model/topical/dto.go

11 lines
248 B
Go
Raw Permalink Normal View History

2022-11-13 18:14:50 +08:00
package topical
2022-11-13 19:34:48 +08:00
type CreateTopicalDTO struct {
2022-11-26 20:22:38 +08:00
Title string `json:"title" validate:"required"`
Content string `json:"content" validate:"required"`
}
type DeleteTopicalDTO struct {
Id string `json:"id" example:"123456" validate:"required"`
2022-11-13 19:34:48 +08:00
}