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"` }