24 lines
341 B
Go
Executable File
24 lines
341 B
Go
Executable File
package renderer
|
|
|
|
type LayoutState struct {
|
|
AdministrationState AdministrationState
|
|
Menu any
|
|
ActiveMenu string
|
|
|
|
// DEPRECATED
|
|
MenuItems []MenuItem
|
|
}
|
|
|
|
// DEPRECATED
|
|
type MenuItem struct {
|
|
Title string
|
|
Link string
|
|
Active bool
|
|
Icon string
|
|
}
|
|
|
|
type AdministrationState struct {
|
|
Display bool
|
|
Active bool
|
|
}
|