13 lines
227 B
Go
13 lines
227 B
Go
package components
|
|
|
|
type FormSelect struct {
|
|
ID string
|
|
SelectedOption FormSelectOption
|
|
Label string
|
|
AllOptions []FormSelectOption
|
|
}
|
|
|
|
type FormSelectOption struct {
|
|
Value string
|
|
Caption string
|
|
}
|