14 lines
223 B
Go
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
|
|
}
|