forked from ebhomengo/niki
18 lines
408 B
Go
18 lines
408 B
Go
package adminkindboxparam
|
|
|
|
import (
|
|
"git.gocasts.ir/ebhomengo/niki/entity"
|
|
"git.gocasts.ir/ebhomengo/niki/param"
|
|
)
|
|
|
|
type KindBoxGetAllRequest struct {
|
|
Pagination param.PaginationRequest
|
|
Sort param.SortRequest
|
|
Filter param.FilterRequest
|
|
}
|
|
|
|
type KindBoxGetAllResponse struct {
|
|
AllKindBox []entity.KindBox `json:"all_kind_box"`
|
|
Pagination param.PaginationResponse `json:"pagination"`
|
|
}
|