19 lines
268 B
Go
19 lines
268 B
Go
|
package renderer
|
||
|
|
||
|
type LayoutState struct {
|
||
|
AdministrationState AdministrationState
|
||
|
MenuItems []MenuItem
|
||
|
}
|
||
|
|
||
|
type MenuItem struct {
|
||
|
Title string
|
||
|
Link string
|
||
|
Active bool
|
||
|
Icon string
|
||
|
}
|
||
|
|
||
|
type AdministrationState struct {
|
||
|
Display bool
|
||
|
Active bool
|
||
|
}
|