forked from ebhomengo/niki
13 lines
196 B
Go
13 lines
196 B
Go
|
package kind_box
|
||
|
|
||
|
import "git.gocasts.ir/ebhomengo/niki/entity"
|
||
|
|
||
|
type GetKindBoxRequest struct {
|
||
|
KindBoxID uint `param:"id"`
|
||
|
AgentID uint
|
||
|
}
|
||
|
|
||
|
type GetKindBoxResponse struct {
|
||
|
entity.KindBox
|
||
|
}
|