vaulterm/server/app/teams/schema.go

17 lines
268 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
}
type InviteTeamSchema struct {
Username string `json:"username"`
Role string `json:"role"`
}