9 lines
119 B
Go
9 lines
119 B
Go
|
package components
|
||
|
|
||
|
type FormSwitch struct {
|
||
|
ID string
|
||
|
Label string
|
||
|
IsChecked bool
|
||
|
IsDisabled bool
|
||
|
}
|