1
0
Fork 0
forked from goffee/core
core/template/components/form_input.go
2024-12-06 04:55:43 -05:00

14 lines
250 B
Go

package components
type FormInput struct {
ID string
Label string
Type string
Placeholder string
Value string
Hint string
Error string
IsDisabled bool
Autocomplete bool
IsRequired bool
}