mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-11 13:29:12 +00:00
13 lines
147 B
Go
13 lines
147 B
Go
|
package models
|
||
|
|
||
|
type NavHeader struct {
|
||
|
Logo *Image
|
||
|
Primary *NavItem
|
||
|
Items []*NavItem
|
||
|
}
|
||
|
|
||
|
type NavItem struct {
|
||
|
Text string
|
||
|
Href string
|
||
|
}
|