forked from ebhomengo/niki
18 lines
464 B
Go
18 lines
464 B
Go
package adminkindboxreqparam
|
|
|
|
import (
|
|
"git.gocasts.ir/ebhomengo/niki/entity"
|
|
"git.gocasts.ir/ebhomengo/niki/param"
|
|
)
|
|
|
|
type DeliveryAwaitingGetAllRequest struct {
|
|
Pagination param.PaginationRequest
|
|
Sort param.SortRequest
|
|
Filter param.FilterRequest
|
|
}
|
|
|
|
type DeliveryAwaitingGetAllResponse struct {
|
|
AllAwaitingKindBoxReq []entity.KindBoxReq `json:"all_awaiting_kind_box_req"`
|
|
Pagination param.PaginationResponse `json:"pagination"`
|
|
}
|