mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-04-28 16:49:39 +07:00
17 lines
268 B
Go
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"`
|
|
}
|