2024-07-14 08:58:37 +00:00
|
|
|
package agentkindboxparam
|
|
|
|
|
|
|
|
import (
|
|
|
|
"git.gocasts.ir/ebhomengo/niki/entity"
|
|
|
|
"git.gocasts.ir/ebhomengo/niki/param"
|
|
|
|
)
|
|
|
|
|
|
|
|
type GetAllRequest struct {
|
|
|
|
Pagination param.PaginationRequest
|
|
|
|
Sort param.SortRequest
|
|
|
|
Filter param.FilterRequest
|
|
|
|
}
|
|
|
|
|
|
|
|
type GetAllResponse struct {
|
|
|
|
AllKindBoxes []entity.KindBox `json:"all_kind_boxes"`
|
|
|
|
Pagination param.PaginationResponse `json:"pagination"`
|
2024-08-01 10:20:18 +00:00
|
|
|
FieldErrors map[string]string `json:"field_errors,omitempty"`
|
2024-07-14 08:58:37 +00:00
|
|
|
}
|