11 lines
131 B
Go
11 lines
131 B
Go
|
package wde
|
||
|
|
||
|
type ContexMenuIsland struct {
|
||
|
Rows []ContexMenuRow
|
||
|
}
|
||
|
|
||
|
type ContexMenuRow struct {
|
||
|
Label string
|
||
|
Action []string
|
||
|
}
|