mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-06-18 01:29:37 +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"`
|
||
|
}
|