core/template/components/form_checkbox.go

15 lines
223 B
Go
Raw Normal View History

2024-10-08 08:58:42 -04:00
package components
type FormCheckbox struct {
Label string
AllCheckbox []FormCheckboxItem
}
type FormCheckboxItem struct {
ID string
Name string
Value string
Label string
IsChecked bool
}