mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-04 10:13:53 +08:00
13 lines
309 B
Go
13 lines
309 B
Go
package team_dto
|
|
|
|
type CreateTeam struct {
|
|
Id string `json:"id"`
|
|
Name string `json:"name" binding:"required"`
|
|
Description string `json:"description"`
|
|
Master string `json:"master"`
|
|
}
|
|
type EditTeam struct {
|
|
Name *string `json:"name"`
|
|
Description *string `json:"description"`
|
|
}
|