1
0
Fork 0
forked from goffee/core
core/template/components/form_select.go

14 lines
227 B
Go
Raw Permalink Normal View History

2024-10-08 08:58:42 -04:00
package components
type FormSelect struct {
ID string
SelectedOption FormSelectOption
Label string
AllOptions []FormSelectOption
}
type FormSelectOption struct {
Value string
Caption string
}