core/template/components/form_checkbox.go
2024-10-08 07:58:42 -05:00

14 lines
223 B
Go

package components
type FormCheckbox struct {
Label string
AllCheckbox []FormCheckboxItem
}
type FormCheckboxItem struct {
ID string
Name string
Value string
Label string
IsChecked bool
}