forked from ebhomengo/niki
14 lines
370 B
Go
14 lines
370 B
Go
package adminkindboxreqparam
|
|
|
|
import (
|
|
entity "git.gocasts.ir/ebhomengo/niki/entity"
|
|
paginationparam "git.gocasts.ir/ebhomengo/niki/param"
|
|
)
|
|
|
|
type KindBoxReqGetAllRequest struct{}
|
|
|
|
type KindBoxReqGetAllResponse struct {
|
|
AllKindBoxReq []entity.KindBoxReq `json:"all_kind_box_req"`
|
|
Pagination paginationparam.PaginationResponse `json:"pagination"`
|
|
}
|