vaulterm/server/app/teams/schema.go

12 lines
168 B
Go
Raw Normal View History

2024-11-14 17:58:19 +07:00
package teams
type CreateTeamSchema struct {
Name string `json:"name"`
Icon string `json:"icon"`
}
type GetOptions struct {
ID string
WithMembers bool
}