1
0
Fork 0
forked from goffee/core
core/template/components/form_radio.go
2024-10-08 07:58:42 -05:00

15 lines
232 B
Go

package components
type FormRadio struct {
Label string
AllRadios []FormRadioItem
}
type FormRadioItem struct {
ID string
Name string
Value string
Label string
IsDisabled bool
IsChecked bool
}