forked from ebhomengo/niki
14 lines
309 B
Go
14 lines
309 B
Go
package adminkindboxreqparam
|
|
|
|
import (
|
|
entity "git.gocasts.ir/ebhomengo/niki/entity"
|
|
paginationparam "git.gocasts.ir/ebhomengo/niki/param"
|
|
)
|
|
|
|
type KindBoxReqGetAllRequest struct{}
|
|
|
|
type KindBoxReqGetAllResponse struct {
|
|
AllKindBoxReq []entity.KindBoxReq
|
|
Pagination paginationparam.PaginationResponse
|
|
}
|