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 {
|
|
|
|
AllKindBoxReq []entity.KindBoxReq
|
2024-04-28 11:27:23 +00:00
|
|
|
Pagination paginationparam.PaginationResponse
|
2023-12-25 17:08:19 +00:00
|
|
|
}
|