forked from ebhomengo/niki
15 lines
242 B
Go
15 lines
242 B
Go
|
package entity
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type KindBoxReq struct {
|
||
|
ID uint
|
||
|
TypeId uint
|
||
|
CountRequested uint
|
||
|
CountAccepted uint
|
||
|
BenefactorID uint
|
||
|
Status uint
|
||
|
Description string
|
||
|
StatusChangedAt *time.Time
|
||
|
}
|