forked from goffee/core
14 lines
248 B
Go
14 lines
248 B
Go
package components
|
|
|
|
type FormSelect struct {
|
|
ID string
|
|
SelectedOption FormSelectOption
|
|
Label string
|
|
AllOptions []FormSelectOption
|
|
IsMultiple bool
|
|
}
|
|
|
|
type FormSelectOption struct {
|
|
Value string
|
|
Caption string
|
|
}
|