2023-12-25 17:08:19 +00:00
|
|
|
package adminkindboxreqparam
|
|
|
|
|
2024-07-21 14:16:01 +00:00
|
|
|
import "git.gocasts.ir/ebhomengo/niki/entity"
|
2023-12-25 17:08:19 +00:00
|
|
|
|
2024-07-21 14:16:01 +00:00
|
|
|
type GetKindBoxReqRequest struct {
|
|
|
|
KindBoxID uint `param:"id"`
|
2023-12-25 17:08:19 +00:00
|
|
|
}
|
|
|
|
|
2024-07-21 14:16:01 +00:00
|
|
|
type GetKindBoxReqResponse struct {
|
2023-12-25 17:08:19 +00:00
|
|
|
entity.KindBoxReq
|
2024-08-01 10:20:18 +00:00
|
|
|
FieldErrors map[string]string `json:"field_errors,omitempty"`
|
2023-12-25 17:08:19 +00:00
|
|
|
}
|