mirror of
https://gitee.com/shikong-sk/gofiber-study
synced 2025-05-10 20:18:04 +08:00
11 lines
248 B
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"`
|
|
}
|