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