2024-01-02 14:04:16 +00:00
|
|
|
package benefactorkindboxparam
|
2023-12-26 17:52:20 +00:00
|
|
|
|
2024-07-21 13:38:54 +00:00
|
|
|
import (
|
|
|
|
"git.gocasts.ir/ebhomengo/niki/entity"
|
|
|
|
"git.gocasts.ir/ebhomengo/niki/param"
|
|
|
|
)
|
2023-12-26 17:52:20 +00:00
|
|
|
|
2023-12-26 17:53:25 +00:00
|
|
|
type KindBoxGetAllRequest struct {
|
2024-07-21 13:38:54 +00:00
|
|
|
Pagination param.PaginationRequest
|
|
|
|
Sort param.SortRequest
|
|
|
|
Filter param.FilterRequest
|
2023-12-26 17:52:20 +00:00
|
|
|
}
|
|
|
|
|
2023-12-26 17:53:25 +00:00
|
|
|
type KindBoxGetAllResponse struct {
|
2024-08-01 10:20:18 +00:00
|
|
|
AllKindBox []entity.KindBox `json:"all_kind_box"`
|
|
|
|
Pagination param.PaginationResponse `json:"pagination"`
|
|
|
|
FieldErrors map[string]string `json:"field_errors,omitempty"`
|
2023-12-26 17:52:20 +00:00
|
|
|
}
|