Unfinished Signed-off-by: Ethan Wellenreiter <ewellenreiter@gmail.com>
9 lines
180 B
Go
9 lines
180 B
Go
package storage
|
|
|
|
type Role struct {
|
|
ID int64 `json:"id"`
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
Level int `json:"level"`
|
|
}
|