mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-16 17:09:28 +08:00
10 lines
209 B
Go
10 lines
209 B
Go
package options
|
|
|
|
// OpenDialog contains the options for the OpenDialog runtime method
|
|
type OpenDialog struct {
|
|
Title string
|
|
Filter string
|
|
AllowFiles bool
|
|
AllowDirectories bool
|
|
}
|