2023-12-25 17:08:19 +00:00
|
|
|
package adminkindboxparam
|
|
|
|
|
|
|
|
import entity "git.gocasts.ir/ebhomengo/niki/entity"
|
|
|
|
|
|
|
|
type KindBoxUpdateRequest struct {
|
2023-12-26 21:42:33 +00:00
|
|
|
BenefactorID uint
|
|
|
|
KindBoxID uint
|
2023-12-25 17:08:19 +00:00
|
|
|
TotalAmount uint
|
|
|
|
ReceiverID uint
|
|
|
|
SenderID uint
|
|
|
|
SerialNumber string
|
2023-12-26 17:53:25 +00:00
|
|
|
Status entity.KindBoxStatus
|
2023-12-25 17:08:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type KindBoxUpdateResponse struct {
|
|
|
|
KindBox entity.KindBox
|
|
|
|
}
|