mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
21 lines
387 B
Go
21 lines
387 B
Go
// Code generated from Pkl module `models`. DO NOT EDIT.
|
|
package models
|
|
|
|
import "github.com/onsonr/sonr/pkg/nebula/models/inputtype"
|
|
|
|
type Input struct {
|
|
Label string `pkl:"label"`
|
|
|
|
Type inputtype.InputType `pkl:"type"`
|
|
|
|
Placeholder string `pkl:"placeholder"`
|
|
|
|
Value *string `pkl:"value"`
|
|
|
|
Error *string `pkl:"error"`
|
|
|
|
Help *string `pkl:"help"`
|
|
|
|
Required *bool `pkl:"required"`
|
|
}
|