mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-06-17 09:09:36 +07:00
12 lines
205 B
Go
12 lines
205 B
Go
|
package members
|
||
|
|
||
|
type InviteSchema struct {
|
||
|
Username string `json:"username"`
|
||
|
Role string `json:"role"`
|
||
|
}
|
||
|
|
||
|
type PutRoleSchema struct {
|
||
|
UserID string `json:"username"`
|
||
|
Role string `json:"role"`
|
||
|
}
|