9 lines
208 B
Go
9 lines
208 B
Go
package team
|
|
|
|
type teamRequest struct {
|
|
Name string `json:"name" binding:"required"`
|
|
ParentID *uint `json:"parentId"`
|
|
Description string `json:"description"`
|
|
Sort int `json:"sort"`
|
|
}
|