parcoursmob/renderer/layout.go

19 lines
268 B
Go
Raw Normal View History

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
}