2023-12-25 17:08:19 +00:00
|
|
|
package adminkindboxreqparam
|
|
|
|
|
2024-04-28 11:27:23 +00:00
|
|
|
import (
|
2024-06-12 08:15:28 +00:00
|
|
|
"git.gocasts.ir/ebhomengo/niki/entity"
|
|
|
|
"git.gocasts.ir/ebhomengo/niki/param"
|
2024-04-28 11:27:23 +00:00
|
|
|
)
|
2023-12-25 17:08:19 +00:00
|
|
|
|
2024-06-12 08:15:28 +00:00
|
|
|
type KindBoxReqGetAllRequest struct {
|
|
|
|
Pagination param.PaginationRequest
|
|
|
|
Sort param.SortRequest
|
|
|
|
Filter param.FilterRequest
|
|
|
|
}
|
2023-12-25 17:08:19 +00:00
|
|
|
|
|
|
|
type KindBoxReqGetAllResponse struct {
|
2024-06-12 08:15:28 +00:00
|
|
|
AllKindBoxReq []entity.KindBoxReq `json:"all_awaiting_kind_box_req"`
|
|
|
|
Pagination param.PaginationResponse `json:"pagination"`
|
2023-12-25 17:08:19 +00:00
|
|
|
}
|