2024-01-02 14:04:16 +00:00
|
|
|
package benefactorkindboxreqparam
|
2023-12-25 17:08:19 +00:00
|
|
|
|
|
|
|
import entity "git.gocasts.ir/ebhomengo/niki/entity"
|
|
|
|
|
|
|
|
type KindBoxReqGetRequest struct {
|
|
|
|
BenefactorID uint
|
|
|
|
KindBoxReqID uint
|
|
|
|
}
|
|
|
|
|
|
|
|
type KindBoxReqGetResponse struct {
|
2024-05-21 22:10:16 +00:00
|
|
|
entity.KindBoxReq `json:"kind_box_req"`
|
2024-08-01 10:20:18 +00:00
|
|
|
FieldErrors map[string]string `json:"field_errors,omitempty"`
|
2023-12-25 17:08:19 +00:00
|
|
|
}
|