2023-12-25 17:08:19 +00:00
|
|
|
package adminkindboxparam
|
2023-12-20 08:27:13 +00:00
|
|
|
|
2024-07-09 17:17:04 +00:00
|
|
|
import (
|
|
|
|
"git.gocasts.ir/ebhomengo/niki/entity"
|
|
|
|
"git.gocasts.ir/ebhomengo/niki/param"
|
|
|
|
)
|
2023-12-20 08:27:13 +00:00
|
|
|
|
2024-07-09 17:17:04 +00:00
|
|
|
type KindBoxGetAllRequest struct {
|
|
|
|
Pagination param.PaginationRequest
|
|
|
|
Sort param.SortRequest
|
|
|
|
Filter param.FilterRequest
|
|
|
|
}
|
2023-12-20 08:27:13 +00:00
|
|
|
|
|
|
|
type KindBoxGetAllResponse struct {
|
2024-07-09 17:17:04 +00:00
|
|
|
AllKindBox []entity.KindBox `json:"all_kind_box"`
|
|
|
|
Pagination param.PaginationResponse `json:"pagination"`
|
2023-12-20 08:27:13 +00:00
|
|
|
}
|