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