2023-12-25 17:08:19 +00:00
|
|
|
package adminkindboxreqparam
|
|
|
|
|
2024-04-28 11:27:23 +00:00
|
|
|
import (
|
|
|
|
entity "git.gocasts.ir/ebhomengo/niki/entity"
|
|
|
|
paginationparam "git.gocasts.ir/ebhomengo/niki/param"
|
|
|
|
)
|
2023-12-25 17:08:19 +00:00
|
|
|
|
2023-12-26 17:53:25 +00:00
|
|
|
type KindBoxReqGetAllRequest struct{}
|
2023-12-25 17:08:19 +00:00
|
|
|
|
|
|
|
type KindBoxReqGetAllResponse struct {
|
2024-05-21 22:10:16 +00:00
|
|
|
AllKindBoxReq []entity.KindBoxReq `json:"all_kind_box_req"`
|
|
|
|
Pagination paginationparam.PaginationResponse `json:"pagination"`
|
2023-12-25 17:08:19 +00:00
|
|
|
}
|