forked from ebhomengo/niki
19 lines
471 B
Go
19 lines
471 B
Go
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"`
|
|
FieldErrors map[string]string `json:"field_errors,omitempty"`
|
|
}
|