mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-18 17:26:38 +08:00
10 lines
251 B
Go
10 lines
251 B
Go
package vo
|
|
|
|
type AdminRole struct {
|
|
Id int `json:"id"`
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
Permissions interface{} `json:"permissions"`
|
|
CreatedAt string `json:"created_at"`
|
|
}
|