forked from ebhomengo/niki
18 lines
400 B
Go
18 lines
400 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"`
|
||
|
}
|