16 lines
232 B
Go
16 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
|
||
|
}
|