usermngmt/model/role_response.go

9 lines
150 B
Go
Raw Normal View History

2021-11-10 02:54:49 +00:00
package model
2021-11-10 01:44:22 +00:00
2021-11-10 04:42:23 +00:00
// RoleShort ...
2021-11-10 01:44:22 +00:00
type RoleShort struct {
ID string `json:"_id"`
Name string `json:"name"`
IsAdmin bool `json:"isAdmin"`
2021-11-10 05:07:58 +00:00
}