Files
History_Api/internal/dtos/request/wiki.go
AzenKain bcc2e192c1
All checks were successful
Build and Release / release (push) Successful in 1m14s
UPDATE: Submission module
2026-05-04 09:55:17 +07:00

10 lines
446 B
Go

package request
type SearchWikiDto struct {
Cursor string `json:"cursor" query:"cursor" validate:"omitempty,uuid"`
ProjectID *string `json:"project_id" query:"project_id" validate:"omitempty,uuid"`
Limit int `json:"limit" query:"limit" validate:"omitempty,min=1,max=100"`
Title string `json:"title" query:"title" validate:"omitempty,max=1000"`
EntityID string `json:"entity_id" query:"entity_id" validate:"omitempty,uuid"`
}