gofiber-study/model/topical/dto.go

11 lines
248 B
Go

package topical
type CreateTopicalDTO struct {
Title string `json:"title" validate:"required"`
Content string `json:"content" validate:"required"`
}
type DeleteTopicalDTO struct {
Id string `json:"id" example:"123456" validate:"required"`
}