13 lines
148 B
Go
13 lines
148 B
Go
package objects
|
|
|
|
type Role struct {
|
|
Id string
|
|
Name string
|
|
Color int
|
|
Hoist bool
|
|
Position int
|
|
Permissions int
|
|
Managed bool
|
|
Mentionable bool
|
|
}
|