mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-04 18:01:17 +08:00
11 lines
232 B
Go
11 lines
232 B
Go
package options
|
|
|
|
// OpenDialog contains the options for the OpenDialog runtime method
|
|
type OpenDialog struct {
|
|
Title string
|
|
Filter string
|
|
AllowFiles bool
|
|
AllowDirectories bool
|
|
AllowMultiple bool
|
|
}
|