5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-17 01:19:29 +08:00
wails/v2/pkg/menu/trayoptions.go
2020-12-22 18:08:38 +11:00

15 lines
177 B
Go

package menu
type TrayType string
const (
TrayIcon TrayType = "icon"
TrayLabel TrayType = "label"
)
type TrayOptions struct {
Type TrayType
Label string
Menu *Menu
}