vaulterm/server/app/teams/schema.go
2024-11-14 17:58:19 +07:00

17 lines
268 B
Go

package teams
type CreateTeamSchema struct {
Name string `json:"name"`
Icon string `json:"icon"`
}
type GetOptions struct {
ID string
WithMembers bool
}
type InviteTeamSchema struct {
Username string `json:"username"`
Role string `json:"role"`
}